forked from BrianHicks/nix-script
-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (36 loc) · 1.14 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: CI
on:
pull_request:
env:
NIX_SCRIPT_LOG: trace
NIX_SCRIPT_CACHE: cache
jobs:
build-and-test:
name: build and test
strategy:
matrix:
# note: we're using ubuntu-latest as a stand-in for all Linux
# distributions. If we find we need more, we should do Docker stuff.
os: [ubuntu-latest, macos-11] # depending on usage, maybe add macos-10.15 too
runs-on: "${{ matrix.os }}"
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v25
- uses: cachix/cachix-action@v14
with:
name: nix-script
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- uses: Swatinem/rust-cache@v2
- run: nix build --print-build-logs
- run: nix develop --command bash -c 'NIX_PATH="nixpkgs=$NIX_PKGS" cargo test'
rustfmt:
name: rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v25
- uses: cachix/cachix-action@v14
with:
name: nix-script
skipPush: true
- run: nix develop --command rustfmt --check $(find . -name "*.rs" -not -ipath '*target*')