CI #20
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| go: ['1.22.x'] | |
| os: [ubuntu-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Setup Go | |
| uses: actions/setup-go@v2 | |
| with: | |
| go-version: ${{ matrix.go }} | |
| - name: Test | |
| run: go test ./... -coverprofile=coverage.txt | |
| - name: Create Tag | |
| if: success() # 仅在测试成功时运行 | |
| run: | | |
| git config --global user.name 'github-actions' | |
| git config --global user.email 'github-actions@github.com' | |
| TAG="v0.0.11-$(date +'%Y%m%d%H%M%S')" | |
| echo "TAG=$TAG" >> $GITHUB_ENV | |
| git tag $TAG | |
| git push origin $TAG | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Update README | |
| if: success() | |
| run: | | |
| sed -i "s|go get github.com/oneclickvirt/cputest@.*|go get github.com/oneclickvirt/cputest@${{ env.TAG }}|" README.md | |
| git add README.md | |
| git commit -m "Update README with latest tag ${{ env.TAG }}" | |
| git push origin main # 修改为你的默认分支名称 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |