-
Notifications
You must be signed in to change notification settings - Fork 1
49 lines (42 loc) · 1.07 KB
/
rust.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
name: CI
on:
push:
branches: [ main, ci ]
pull_request:
branches: [ main ]
types:
- opened
- reopened
- synchronize
- ready_for_review
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }}
steps:
- uses: actions/checkout@v2
with:
profile: minimal
toolchain: stable
components: clippy
- name: Default CI
run: cargo run -p ci
- name: QUIC CI
run: cargo run -p ci --features quic
coverage:
name: coverage
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
profile: minimal
toolchain: stable
- name: Install tarpaulin
run: cargo install cargo-tarpaulin
- name: Generate code coverage
run: |
cargo tarpaulin --verbose --all-features --workspace --timeout 600 -- --test-threads=1