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
name: Test Suite
on:
pull_request:
workflow_dispatch:
env:
RUSTFLAGS: -D warnings
jobs:
test:
name: Test Suite
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Set up Go 1.21.6
uses: actions/setup-go@v5
with:
go-version: "1.21.6"
- name: Install cargo make
uses: davidB/rust-cargo-make@v1
- name: Install stable toolchain
run: cargo make install-stable
- name: Run unit tests
run: cargo make unit-test
env:
RUST_BACKTRACE: 1
# No integration tests yet
# - name: Run integration tests
# run: cargo make integration-test
# env:
# RUST_BACKTRACE: 1