We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aca4df8 commit c846458Copy full SHA for c846458
1 file changed
.github/workflows/build.yml
@@ -1,4 +1,4 @@
1
-name: "Build git-commit-generator"
+name: "Build and check"
2
on:
3
push:
4
branches:
@@ -7,8 +7,8 @@ on:
7
8
- main
9
jobs:
10
- build:
11
- name: Build on ${{ matrix.os }}
+ check:
+ name: Check on ${{ matrix.os }}
12
runs-on: ${{ matrix.os }}
13
strategy:
14
matrix:
@@ -18,6 +18,15 @@ jobs:
18
- uses: cachix/install-nix-action@v31
19
- name: Flake check
20
run: nix flake check --all-systems
21
+ build:
22
+ name: Build on ${{ matrix.os }}
23
+ runs-on: ${{ matrix.os }}
24
+ strategy:
25
+ matrix:
26
+ os: [ubuntu-latest, macos-latest]
27
+ steps:
28
+ - uses: actions/checkout@v4
29
+ - uses: cachix/install-nix-action@v31
30
- name: Build Git Commit Generator
31
run: nix build '.#git-commit-generator'
32
- name: Upload Git Commit Generator
0 commit comments