2021-03-30 00:17:29 +02:00
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
name: CI
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
check:
|
|
|
|
name: Check
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
2021-03-31 13:48:15 +02:00
|
|
|
- name: Install stable toolchain
|
2021-03-30 00:17:29 +02:00
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
profile: minimal
|
2021-03-31 13:48:15 +02:00
|
|
|
toolchain: stable
|
2021-03-30 00:17:29 +02:00
|
|
|
override: true
|
|
|
|
|
|
|
|
- name: Run cargo check
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: check
|
|
|
|
|
|
|
|
test:
|
|
|
|
name: Test Suite
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
2021-03-31 13:48:15 +02:00
|
|
|
- name: Install stable toolchain
|
2021-03-30 00:17:29 +02:00
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
profile: minimal
|
2021-03-31 13:48:15 +02:00
|
|
|
toolchain: stable
|
2021-03-30 00:17:29 +02:00
|
|
|
override: true
|
|
|
|
|
|
|
|
- name: Run cargo test
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: test
|
|
|
|
|
|
|
|
lints:
|
|
|
|
name: Lints
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
2021-03-31 13:48:15 +02:00
|
|
|
- name: Install stable toolchain
|
2021-03-30 00:17:29 +02:00
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
profile: minimal
|
2021-03-31 13:48:15 +02:00
|
|
|
toolchain: stable
|
2021-03-30 00:17:29 +02:00
|
|
|
override: true
|
|
|
|
components: rustfmt, clippy
|
|
|
|
|
|
|
|
- name: Run cargo fmt
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: fmt
|
|
|
|
args: --all -- --check
|
|
|
|
|
|
|
|
- name: Run cargo clippy
|
2021-03-30 00:23:09 +02:00
|
|
|
uses: actions-rs/clippy-check@v1
|
2021-03-30 00:17:29 +02:00
|
|
|
with:
|
2021-03-30 00:23:09 +02:00
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
2021-03-30 11:47:14 +02:00
|
|
|
args: --all-features -- -D warnings
|