-
-
Notifications
You must be signed in to change notification settings - Fork 48
112 lines (105 loc) · 2.97 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
name: Continuous Integration
on:
push:
branches:
- master
pull_request:
branches:
- master
schedule:
- cron: "0 0 * * 0"
jobs:
check:
name: Check
runs-on: ubuntu-22.04
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Check the project files
run: cargo check --locked --verbose
test:
name: Test suite
runs-on: ubuntu-22.04
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Generate code coverage
run: cargo llvm-cov --lcov --output-path lcov.info -- --test-threads 1
env:
OUT_DIR: target
- name: Upload reports to codecov
run: |
curl -Os https://uploader.codecov.io/latest/linux/codecov
chmod +x codecov
./codecov -t ${CODECOV_TOKEN} -f lcov.info
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
fixtures:
strategy:
fail-fast: false
matrix:
os:
- name: Linux
runner: ubuntu-22.04
- name: macOS
runner: macos-12
name: Test fixtures [${{ matrix.os.name }}]
runs-on: ${{ matrix.os.runner }}
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Install coreutils for MacOS
if: matrix.os.name == 'macOS'
run: brew install coreutils
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Build the project
run: cargo build --locked --verbose
- name: Run test fixtures
shell: bash
run: ./test-fixtures.sh
working-directory: fixtures
env:
DEBUG: true
clippy:
name: Lints
runs-on: ubuntu-22.04
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- name: Check the lints
run: cargo clippy --tests --verbose -- -D warnings
rustfmt:
name: Formatting
runs-on: ubuntu-22.04
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- name: Check the formatting
run: cargo fmt -- --check --verbose
lychee:
name: Links
runs-on: ubuntu-22.04
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Check the links
uses: lycheeverse/lychee-action@v2
with:
args: --exclude "example.com|site.com|localhost|awesome.txt|x.txt" -v *.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}