-
Notifications
You must be signed in to change notification settings - Fork 16
31 lines (30 loc) · 862 Bytes
/
ci.yaml
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
name: Continuos Integration
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
# build the crate on Linux, Windows and MacOS (can only be tested on Linux)
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
rust: [stable, nightly]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- run: rustup update --no-self-update ${{ matrix.rust }} && rustup default ${{ matrix.rust }}
- name: Build
run: cargo build
# execute all tests (requires an installed valgrind)
test:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v4
- name: Install valgrind
run: sudo apt install valgrind
- run: rustup update --no-self-update 1.82 && rustup default 1.82
- name: Run tests
run: cargo test