chore(docs): Add a note on how to install GPU drivers for Nvidia and … #640
This file contains 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: | |
- main | |
pull_request: | |
jobs: | |
checks: | |
runs-on: ${{ matrix.system }} | |
permissions: | |
contents: read | |
strategy: | |
matrix: | |
# Intel mac excluded; See https://github.com/juspay/services-flake/issues/231 | |
system: [ x86_64-linux, aarch64-darwin ] | |
steps: | |
- uses: actions/checkout@v4 | |
- run: nixci --extra-access-tokens "github.com=${{ secrets.GITHUB_TOKEN }}" build --systems "github:nix-systems/${{ matrix.system }}" |