-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (35 loc) · 958 Bytes
/
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
name: CI
on:
push:
branches: ["dev"]
pull_request:
branches: ["dev"]
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: run cargo tests
runs-on: ubuntu-latest
steps:
- name: check out branch
uses: actions/checkout@v4
- name: set up rust
uses: actions-rust-lang/setup-rust-toolchain@v1
- name: cargo build
run: cargo build --verbose
- name: cargo test
run: cargo test --verbose
lint:
name: verify formatting and lints
runs-on: ubuntu-latest
steps:
- name: check out branch
uses: actions/checkout@v4
- name: set up rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: rustfmt, clippy
- name: verify formatting
uses: actions-rust-lang/rustfmt@v1
- name: run clippy
run: cargo clippy --all-targets --workspace -- --deny clippy::all --warn clippy::pedantic --warn warnings