-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (45 loc) · 1017 Bytes
/
ci.yaml
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
# Runs tests and linters on pushes to main and PRs.
name: CI
on:
push:
branches:
- "main"
paths:
- "**.rs"
- "Cargo.toml"
- "Cargo.lock"
- ".github/**"
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches:
- "main"
paths:
- "**.rs"
- "Cargo.toml"
- "Cargo.lock"
- ".github/**"
workflow_dispatch:
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
name: CI
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Set up Rust caching
uses: Swatinem/rust-cache@v2
- name: Run rustfmt
run: |
cargo fmt -- --check
- name: Run clippy
run: |
cargo clippy -- -D warnings
- name: Run tests
run: |
cargo test