-
Notifications
You must be signed in to change notification settings - Fork 12
71 lines (58 loc) · 1.67 KB
/
test.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: CI
on:
pull_request:
push:
branches:
- "develop"
- "main"
concurrency:
group: ${{ github.ref_name }}
cancel-in-progress: true
jobs:
build-and-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
fail-fast: false
permissions:
id-token: "write"
contents: "read"
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- uses: DeterminateSystems/flake-checker-action@main
- name: Run `nix build`
run: nix develop
# - name: Set up cachix
# uses: cachix/cachix-action@v15
# with:
# name: holochain-ci
# - name: Restore cargo and build from cache
# uses: actions/cache/restore@v3
# with:
# path: |
# .cargo
# target
# key: ${{ runner.os }}-build-${{ hashFiles('Cargo.lock') }}
# restore-keys: |
# ${{ runner.os }}-build-
- name: Install JS packages
run: nix develop -c npm ci
- name: Clippy
run: nix develop -c npm run cargo:clippy
- name: Check rust formatting
run: nix develop -c npm run cargo:fmt:check
- name: Build Happ
run: nix develop -c npm run build:happ
- name: Save cargo and build to cache
uses: actions/cache/save@v3
with:
path: |
.cargo
target
key: ${{ runner.os }}-build-${{ hashFiles('Cargo.lock') }}
- name: Test with tryorama
run: nix develop -c npm run test