-
Notifications
You must be signed in to change notification settings - Fork 1
56 lines (45 loc) · 1.45 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
name: Tests
on:
push:
branches:
- main
- 'v*'
pull_request:
# The build job caches build artifacts which avoids duplicating work between the
# unit and API tests.
jobs:
build:
name: Build the connector
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Install Nix ❄
uses: DeterminateSystems/nix-installer-action@v4
- name: Link Cachix 🔌
uses: cachix/cachix-action@v12
with:
name: '${{ vars.CACHIX_CACHE_NAME }}'
authToken: '${{ secrets.CACHIX_CACHE_AUTH_TOKEN }}'
- name: build the crate 🔨
run: nix build --print-build-logs
unit_tests:
name: Unit Tests
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Install Nix ❄
uses: DeterminateSystems/nix-installer-action@v4
- name: Link Cachix 🔌
uses: cachix/cachix-action@v12
with:
name: '${{ vars.CACHIX_CACHE_NAME }}'
authToken: '${{ secrets.CACHIX_CACHE_AUTH_TOKEN }}'
- name: run unit tests 🔨
run: nix build .#checks.x86_64-linux.test --print-build-logs
- name: run linter checks with clippy 🔨
run: nix build .#checks.x86_64-linux.lint --print-build-logs
- name: audit for reported security problems 🔨
run: nix build .#checks.x86_64-linux.audit --print-build-logs