-
Notifications
You must be signed in to change notification settings - Fork 4
42 lines (34 loc) · 976 Bytes
/
standard-tests.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
name: Standard Tests
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
concurrency:
group: "${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}"
cancel-in-progress: true
jobs:
basic-tests:
strategy:
fail-fast: false
matrix:
include:
- platform: 'ubuntu-latest'
args: ''
- platform: 'windows-latest'
args: ''
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- name: install rustup & toolchain
uses: dtolnay/rust-toolchain@stable
- name: formatting check
run: cargo fmt --all --check
- name: build
run: cargo build --workspace --exclude rim-gui --verbose
- name: clippy check
run: cargo clippy --no-deps --workspace --exclude rim-gui -- -D warnings
- name: run tests
run: cargo test --workspace --exclude rim-gui --verbose