2021-02-24 10:31:28 +01:00
|
|
|
name: Rust
|
|
|
|
|
2021-03-16 10:26:08 +01:00
|
|
|
on:
|
2021-05-11 12:18:10 +02:00
|
|
|
workflow_dispatch:
|
2021-03-16 10:26:08 +01:00
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
# trying and staging branches are for Bors config
|
|
|
|
branches:
|
|
|
|
- trying
|
|
|
|
- staging
|
2021-02-24 10:31:28 +01:00
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
|
|
|
|
jobs:
|
2021-03-16 10:26:08 +01:00
|
|
|
tests:
|
2021-03-22 19:17:18 +01:00
|
|
|
name: Tests on ${{ matrix.os }}
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-18.04, macos-latest]
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-04-27 12:36:36 +02:00
|
|
|
- name: Run cargo check without any default features
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
2021-04-29 15:19:48 +02:00
|
|
|
command: build
|
|
|
|
args: --locked --release --no-default-features
|
2021-03-22 19:17:18 +01:00
|
|
|
- name: Run cargo test
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: test
|
|
|
|
args: --locked --release
|
2021-02-24 10:31:28 +01:00
|
|
|
|
2021-03-22 19:17:18 +01:00
|
|
|
# We don't run test on Windows since we get the following error: There is not enough space on the disk.
|
2021-04-27 12:36:36 +02:00
|
|
|
check-on-windows:
|
|
|
|
name: Cargo check on Windows
|
2021-03-22 19:17:18 +01:00
|
|
|
runs-on: windows-latest
|
2021-02-24 10:31:28 +01:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-04-27 12:36:36 +02:00
|
|
|
- name: Run cargo check without any default features
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: check
|
|
|
|
args: --no-default-features
|
|
|
|
- name: Run cargo check with all default features
|
2021-03-22 19:17:18 +01:00
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
2021-04-27 12:36:36 +02:00
|
|
|
command: check
|
2021-03-22 19:17:18 +01:00
|
|
|
|
|
|
|
clippy:
|
|
|
|
name: Run Clippy
|
|
|
|
runs-on: ubuntu-18.04
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
profile: minimal
|
|
|
|
toolchain: stable
|
|
|
|
override: true
|
|
|
|
components: clippy
|
|
|
|
- name: Run cargo clippy
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: clippy
|
|
|
|
args: --all-targets -- --deny warnings
|