-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (37 loc) · 1022 Bytes
/
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
name: Test
env:
PROJECT_NAME: swiss-qr-bill-decoder
CARGO_TERM_COLOR: always
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ${{ matrix.platform.runner }}
strategy:
matrix:
platform:
- name: linux-amd64
runner: ubuntu-latest
target: x86_64-unknown-linux-gnu
- name: macos-amd64
runner: macos-latest
target: x86_64-apple-darwin
- name: macos-arm64
runner: macos-latest
target: aarch64-apple-darwin
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
targets: "${{ matrix.platform.target }}"
- name: Rust (Cargo) Caching
uses: Swatinem/rust-cache@v2
- name: Build
run: cargo build --locked --target ${{ matrix.platform.target }}
- name: Run tests
run: cargo test --locked --target ${{ matrix.platform.target }}