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
name: CI
# Based on https://github.com/recmo/uint/blob/main/.github/workflows/ci.yml
on:
env:
CARGO_TERM_COLOR: always
# Skip incremental build and debug info generation in CI
CARGO_INCREMENTAL: 0
CARGO_PROFILE_DEV_DEBUG: 0
jobs:
test:
name: Test
runs-on: macos-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Cache build
uses: Swatinem/rust-cache@v1
with:
key: cache-v1
- run: npm install ganache-cli@latest --global
# Cargo doc test is not included in `--all-targets` so we call it separately.
# See <https://github.com/rust-lang/cargo/issues/6669>
# Cargo doc test also doesn't support `--no-run`, so we run it but
# have it just print `--help`.
- name: Build tests
run: |
cargo test --all-targets --no-run
cargo test --doc -- --help
- name: Run tests
run: |
cargo test --all-targets -- --nocapture
cargo test --doc -- --nocapture