-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (30 loc) · 818 Bytes
/
rust.yml
File metadata and controls
37 lines (30 loc) · 818 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
name: a1
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
run: |
rustup update
rustup component add rustfmt clippy
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Run Lint and Tests
run: |
cargo clippy -- -D warnings
cargo fmt --all -- --check
cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info
- name: Upload Code Coverage Report
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: lcov.info
fail_ci_if_error: true