Skip to content

Commit df75137

Browse files
committed
ci(flake): run on mac also
1 parent 69af031 commit df75137

2 files changed

Lines changed: 22 additions & 11 deletions

File tree

.github/workflows/nix-build.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.

.github/workflows/test.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Tests
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
test:
11+
strategy:
12+
matrix:
13+
os: [ubuntu-latest, macos-latest]
14+
runs-on: ${{ matrix.os }}
15+
steps:
16+
- uses: actions/checkout@v6
17+
with:
18+
fetch-depth: 0
19+
- name: Install Nix
20+
uses: DeterminateSystems/nix-installer-action@main
21+
- name: Run checks
22+
run: nix flake check -Lvv --log-format bar-with-logs

0 commit comments

Comments
 (0)