-
Notifications
You must be signed in to change notification settings - Fork 13
46 lines (31 loc) · 873 Bytes
/
fast.yml
File metadata and controls
46 lines (31 loc) · 873 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
name: fast-validation
on:
push:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build with default
run: cargo build --verbose
- name: Build with tokio
run: cargo build -F tokio --verbose
- name: Build with async_std
run: cargo build -F async_std --verbose
- name: doc test & internal test
run: cargo test
- name: doc build
run: cargo doc --all-features
- name: Clippy with default
run: cargo clippy
- name: Clippy with tokio
run: cargo clippy -F tokio
- name: Clippy with async_std
run: cargo clippy -F async_std
- name: Run basic tests with tokio
run: make test basic
- name: Run timeout tests with async_std
run: make test_async_std timeout