We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent caeb9a7 commit d63f625Copy full SHA for d63f625
.github/workflows/nix.yml
@@ -1,13 +1,21 @@
1
-name: "GCC"
+name: "Nix"
2
on:
3
pull_request:
4
push:
5
jobs:
6
- tests:
+ gcc-build:
7
runs-on: ubuntu-latest
8
steps:
9
- uses: actions/checkout@v4
10
- uses: cachix/install-nix-action@v31
11
with:
12
github_access_token: ${{ secrets.GITHUB_TOKEN }}
13
- run: nix flake check
14
+ clang-build:
15
+ runs-on: macos-latest
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ - uses: cachix/install-nix-action@v31
19
+ with:
20
+ github_access_token: ${{ secrets.GITHUB_TOKEN }}
21
+ - run: nix flake check
.github/workflows/windows.yml
@@ -7,7 +7,7 @@ on:
branches: [ main ]
- build-msvc:
+ msvc-build:
runs-on: windows-latest
0 commit comments