Better Text Rendering for cairo / lua #1191
Workflow file for this run
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: 'Nix build' | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - web/** | |
| - doc/** | |
| pull_request: | |
| branches: | |
| - main | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build-and-check: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: nixbuild/nix-quick-install-action@v34 | |
| - name: Restore and cache Nix store | |
| uses: nix-community/cache-nix-action@v6 | |
| with: | |
| primary-key: nix-${{ runner.os }}-${{ hashFiles('**/*.nix') }} | |
| restore-prefixes-first-match: nix-${{ runner.os }}- | |
| gc-max-store-size: 1073741824 | |
| purge: true | |
| purge-prefixes: cache-${{ runner.os }}- | |
| purge-created: 0 | |
| purge-primary-key: never | |
| - run: nix build | |
| - run: nix flake check |