-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (40 loc) · 1010 Bytes
/
test.yml
File metadata and controls
49 lines (40 loc) · 1010 Bytes
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
46
47
48
49
name: Multi-Platform Test
on:
push:
branches: [ main ]
paths:
- 'benchplot/**'
- 'examples/**'
pull_request:
branches: [ main ]
paths:
- 'benchplot/**'
- 'examples/**'
workflow_dispatch:
jobs:
build-and-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: Install Linux Dependencies
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y libfontconfig1-dev
- name: Install Rust
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
shell: bash
- name: Run tests
run: |
cargo test --release
# Run examples
for example in examples/*; do
if [ -f "$example/Cargo.toml" ]; then
cargo run --release --manifest-path "$example/Cargo.toml"
fi
done
shell: bash