2021-02-14 16:39:51 +01:00
|
|
|
name: Rust
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ main ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ main ]
|
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2021-02-14 16:51:14 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
2021-04-20 18:07:11 +02:00
|
|
|
- name: Install rust
|
2021-02-14 16:51:14 +01:00
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
2021-04-20 18:07:11 +02:00
|
|
|
toolchain: stable
|
2021-02-14 16:51:14 +01:00
|
|
|
override: true
|
2021-02-14 16:39:51 +01:00
|
|
|
|
2021-02-14 16:51:14 +01:00
|
|
|
- name: Run cargo build
|
2021-02-14 16:55:30 +01:00
|
|
|
run: cargo build
|
2021-02-14 16:51:14 +01:00
|
|
|
|
|
|
|
test:
|
2021-02-14 16:39:51 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-02-14 16:51:14 +01:00
|
|
|
|
2021-04-20 18:07:11 +02:00
|
|
|
- name: Install rust
|
2021-02-14 16:51:14 +01:00
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
2021-04-20 18:07:11 +02:00
|
|
|
toolchain: stable
|
2021-02-14 16:51:14 +01:00
|
|
|
override: true
|
|
|
|
|
|
|
|
- name: Run cargo test
|
2021-04-25 19:21:52 +02:00
|
|
|
run: cargo test --workspace
|
2021-02-14 16:51:14 +01:00
|
|
|
|
|
|
|
clippy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
2021-04-20 18:07:11 +02:00
|
|
|
- name: Install latest rust
|
2021-02-14 16:51:14 +01:00
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
2021-04-20 18:07:11 +02:00
|
|
|
toolchain: stable
|
2021-02-14 16:51:14 +01:00
|
|
|
override: true
|
2021-02-14 16:56:49 +01:00
|
|
|
components: clippy
|
2021-02-14 16:51:14 +01:00
|
|
|
|
2021-02-14 16:55:30 +01:00
|
|
|
- name: Run clippy
|
2021-02-14 19:16:53 +01:00
|
|
|
run: cargo clippy -- -D warnings
|
2021-02-14 16:55:30 +01:00
|
|
|
|
|
|
|
format:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
2021-04-20 18:07:11 +02:00
|
|
|
- name: Install latest rust
|
2021-02-14 16:55:30 +01:00
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
2021-04-20 18:07:11 +02:00
|
|
|
toolchain: stable
|
2021-02-14 16:55:30 +01:00
|
|
|
override: true
|
|
|
|
components: rustfmt
|
|
|
|
|
|
|
|
- name: Format
|
|
|
|
run: cargo fmt -- --check
|