-
-
Notifications
You must be signed in to change notification settings - Fork 5
48 lines (47 loc) · 1.24 KB
/
test.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
48
# Runs general build and test logic.
name: test
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Lint
run: cargo clippy --all-targets --all-features -- -D clippy::all
continue-on-error: true
unit_tests:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Rust Cache
uses: Swatinem/rust-cache@v1
- name: Build
run: cargo build --verbose
- name: Lint
run: cargo clippy --all-targets --all-features -- -D clippy::all
- name: Test
run: cargo test --verbose
- name: Test nostd
run: cargo test --no-default-features
release:
runs-on: ubuntu-latest
needs: [unit_tests]
if: contains('refs/heads/main', github.ref)
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Rust Cache
uses: Swatinem/rust-cache@v1
- name: Publish
uses: katyo/publish-crates@v1
continue-on-error: true
with:
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}