-
Notifications
You must be signed in to change notification settings - Fork 15
46 lines (43 loc) · 1.18 KB
/
ci.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
46
name: CI
on: [push, pull_request]
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
build: [ubuntu, macos, windows]
include:
- build: ubuntu
os: ubuntu-latest
toolchain: stable
- build: macos
os: macos-latest
toolchain: stable
- build: windows
os: windows-latest
toolchain: stable
steps:
- uses: actions/checkout@v3
- name: Install Rust (rustup)
run: |
rustup update ${{ matrix.toolchain }}
rustup default ${{ matrix.toolchain }}
rustup component add clippy
- name: Check warnings
run: cargo clippy --all-features --examples --tests -- -Dwarnings
- name: Run tests
run: cargo test
- name: Run tests (all features)
run: cargo test --all-features
format:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust (rustup)
run: |
rustup update ${{ matrix.toolchain }}
rustup default ${{ matrix.toolchain }}
- name: Check format
run: cargo fmt --all -- --check