-
Notifications
You must be signed in to change notification settings - Fork 9
44 lines (35 loc) · 1.05 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
name: Auto Build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
name: Auto Build CI
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
rust: [nightly, beta, stable]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install Rust toolchain
run: |
rustup set profile minimal
rustup update --no-self-update ${{ matrix.rust }}
rustup component add --toolchain ${{ matrix.rust }} rustfmt clippy
rustup default ${{ matrix.rust }}
- name: Cargo Build
run: cargo build
- name: Cargo Test For tokio
run: cargo test --no-default-features --features runtime-tokio rt
- name: Cargo Test For async-std
run: cargo test --no-default-features --features runtime-async-std
- name: Cargo Clippy
run: cargo clippy -- -D warnings
- name: Cargo Fmt Check
run: cargo fmt --all -- --check