upgrade github actions in ci and release #9
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: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| validate: | |
| name: Validate Flake | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: cachix/install-nix-action@v31 | |
| with: | |
| github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Validate flake | |
| run: nix flake check --no-build | |
| check: | |
| name: ${{ matrix.check }} | |
| runs-on: ubuntu-latest | |
| needs: [validate] | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| check: [tidy, lint, fmt, lint-md] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: cachix/install-nix-action@v31 | |
| with: | |
| github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Run ${{ matrix.check }} | |
| run: nix run .#${{ matrix.check }} | |
| - name: Verify no uncommitted changes | |
| if: matrix.check == 'tidy' || matrix.check == 'fmt' | |
| run: | | |
| if [ -n "$(git status --porcelain)" ]; then | |
| echo "::error::Run 'nix run .#${{ matrix.check }}' and commit changes" | |
| git diff | |
| exit 1 | |
| fi | |
| unit-test: | |
| name: Unit Tests | |
| runs-on: ubuntu-latest | |
| needs: [check] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: cachix/install-nix-action@v31 | |
| with: | |
| github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Run unit tests with race detector | |
| run: nix run .#test-unit | |
| - name: Upload coverage artifact | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: coverage-unit | |
| path: coverage-unit.out | |
| retention-days: 1 | |
| report: | |
| name: Coverage Report | |
| runs-on: ubuntu-latest | |
| needs: [unit-test] | |
| if: always() && needs.unit-test.result == 'success' | |
| permissions: | |
| contents: read | |
| id-token: write | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Download unit test coverage | |
| uses: actions/download-artifact@v8 | |
| with: | |
| name: coverage-unit | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v7 | |
| with: | |
| use_oidc: true | |
| fail_ci_if_error: true | |
| files: ./coverage-unit.out | |
| flags: unittests | |
| name: deployah-unit | |
| disable_search: true |