-
Notifications
You must be signed in to change notification settings - Fork 59
47 lines (42 loc) · 1.1 KB
/
checks.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
name: checks
on: [push, pull_request]
jobs:
test:
name: cargo test
runs-on: ubuntu-latest
steps:
- name: Pull source
uses: actions/checkout@v2
- name: Run cargo test
run: cargo test
env:
# Deny compile warnings
RUSTFLAGS: -D warnings
fmt:
name: cargo fmt
runs-on: ubuntu-latest
steps:
- name: Pull source
uses: actions/checkout@v2
- name: Run cargo fmt
run: cargo fmt --all -- --check
clippy:
name: cargo clippy
runs-on: ubuntu-latest
steps:
- name: Pull source
uses: actions/checkout@v2
- name: Run cargo clippy
run: cargo clippy
env:
# Deny warnings
RUSTFLAGS: -D warnings
static-musl-build:
name: Build statically-linked musl binary
runs-on: ubuntu-latest
steps:
- name: Pull source
uses: actions/checkout@v2
- name: Set permissions
run: chmod --recursive 777 .
- run: docker run --mount type=bind,source="$(pwd)",target=/home/rust/src io12/rust-musl-builder-lzma cargo build --release