58 lines
1.1 KiB
YAML
58 lines
1.1 KiB
YAML
|
---
|
||
|
name: "Tests"
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
branches:
|
||
|
- main
|
||
|
paths:
|
||
|
- "src/**"
|
||
|
|
||
|
jobs:
|
||
|
cargo_udeps:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v2
|
||
|
|
||
|
- uses: actions-rs/toolchain@v1
|
||
|
with:
|
||
|
toolchain: nightly
|
||
|
|
||
|
- name: Install cargo-udeps
|
||
|
run: cargo install cargo-udeps --locked
|
||
|
|
||
|
- name: Check dependencies
|
||
|
run: cargo +nightly udeps
|
||
|
|
||
|
cargo_test:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v2
|
||
|
|
||
|
- uses: actions-rs/toolchain@v1
|
||
|
with:
|
||
|
toolchain: stable
|
||
|
|
||
|
- uses: actions-rs/cargo@v1
|
||
|
with:
|
||
|
command: build
|
||
|
args: --release --all-features
|
||
|
- run: cargo test
|
||
|
cargo_clippy:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v2
|
||
|
|
||
|
- uses: actions-rs/toolchain@v1
|
||
|
with:
|
||
|
toolchain: stable
|
||
|
|
||
|
- uses: actions-rs/cargo@v1
|
||
|
with:
|
||
|
command: build
|
||
|
args: --release --all-features
|
||
|
- run: cargo clippy
|