forked from BrianHicks/nix-script
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (34 loc) · 940 Bytes
/
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
name: CI
on:
push:
env:
NIX_SCRIPT_LOG: trace
NIX_SCRIPT_CACHE: cache
jobs:
build-and-test:
name: Build and test
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: "${{ matrix.os }}"
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v30
- uses: cachix/cachix-action@v15
with:
name: dschrempf-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: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v30
- uses: cachix/cachix-action@v15
with:
name: nix-script
skipPush: true
- run: nix develop --command cargo fmt --all --check