-
Notifications
You must be signed in to change notification settings - Fork 142
62 lines (61 loc) · 1.62 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
name: Tests
strategy:
fail-fast: false
matrix:
include:
- os: macos-latest
target: x86_64-apple-darwin
rust: 1.63.0
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
rust: 1.63.0
- os: ubuntu-latest
target: i686-unknown-linux-gnu
rust: 1.63.0
- os: windows-latest
target: i686-pc-windows-msvc
rust: 1.63.0
- os: windows-latest
target: x86_64-pc-windows-msvc
rust: 1.63.0
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
rust: stable
runs-on: ${{ matrix.os }}
steps:
- name: Install rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
targets: ${{ matrix.target }}
- name: Checkout
uses: actions/checkout@v3
- name: Install linker
if: matrix.target == 'i686-unknown-linux-gnu'
run: |
sudo apt-get update
sudo apt-get install gcc-multilib
- name: Test
run: cargo test --all-features --target ${{ matrix.target }}
lint:
name: Linting (fmt + clippy)
runs-on: ubuntu-latest
steps:
- name: Install rust
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Checkout
uses: actions/checkout@v3
- name: Lint check
run: cargo lint
- name: Format check
run: cargo format-check