-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (34 loc) · 815 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
39
40
41
42
name: CI
on:
workflow_dispatch:
push:
branches: [ "main" ]
pull_request:
types: [ "opened", "synchronize", "reopened", "ready_for_review" ]
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: 0
jobs:
build:
if: github.event.pull_request.draft != true
runs-on: ubuntu-latest
env:
RUSTFLAGS: "-D warnings"
steps:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Checkout codebase
uses: actions/checkout@v3
- name: Format
run: cargo fmt --check
- name: Lint
run: cargo clippy --all-targets
- name: Build release
run: cargo build
- name: Test
run: cargo test