-
-
Notifications
You must be signed in to change notification settings - Fork 54
47 lines (38 loc) · 1003 Bytes
/
tests.yml
File metadata and controls
47 lines (38 loc) · 1003 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
name: Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
workflow_call:
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: ${{ matrix.os }} ${{ matrix.dropLockfile && ' (drop lockfile)' || '' }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- macos-14
- ubuntu-22.04
- windows-latest
dropLockfile:
- true
- false
steps:
- uses: actions/checkout@v4
# Run tests with no features
- name: Run barebones tests
run: cargo test --no-default-features --lib
# Run default feature tests
- name: Run tests
run: cargo test --verbose --lib
# Run tests with just web feature
- name: Run web tests
run: cargo test --features "web" --lib
# Run tests with all features
- name: Run complete tests
run: cargo test --all-features --lib