Change version to 1.3.0-testing-2 for easier tracking #429
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: | |
| push: | |
| branches: ["*"] | |
| tags: ["*"] | |
| pull_request: | |
| branches: ["*"] | |
| jobs: | |
| ci: | |
| name: CI | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: cachix/install-nix-action@v25 | |
| - uses: rrbutani/use-nix-shell-action@v1 | |
| with: | |
| flakes: nixpkgs#llvmPackages_18.clang-tools, nixpkgs#pre-commit | |
| - name: Run clang-format | |
| id: clang-format | |
| run: pre-commit run --all-files --show-diff-on-failure --color always | |
| - name: Build Package | |
| if: success() || (failure() && steps.clang-format.conclusion == 'failure') | |
| uses: ./.github/actions/build | |
| with: | |
| cache-auth-token: '${{ secrets.CACHIX_AUTH_TOKEN }}' |