2021-06-21 19:54:43 +02:00
|
|
|
name: Rust
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ staging, trying ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ main ]
|
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
tests:
|
|
|
|
name: Tests on ${{ matrix.os }} with ${{ matrix.rust }}
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2021-07-07 13:47:25 +02:00
|
|
|
os: [ubuntu-18.04, macos-latest, windows-latest]
|
2021-06-21 19:54:43 +02:00
|
|
|
rust:
|
|
|
|
- stable
|
|
|
|
- beta
|
|
|
|
- nightly
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-07-07 13:47:25 +02:00
|
|
|
- name: Cache dependencies
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.cargo
|
|
|
|
./Cargo.lock
|
|
|
|
./target
|
|
|
|
key: ${{ matrix.os }}-${{ matrix.rust }}-${{ hashFiles('Cargo.toml') }}
|
2021-06-21 19:54:43 +02:00
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
profile: minimal
|
|
|
|
toolchain: ${{ matrix.rust }}
|
|
|
|
override: true
|
|
|
|
- name: Run cargo check
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: check
|
2021-07-07 13:47:25 +02:00
|
|
|
args: --all
|
2021-06-21 19:54:43 +02:00
|
|
|
- name: Run cargo test
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: test
|
2021-07-07 13:47:25 +02:00
|
|
|
args: --release
|
2021-06-21 19:54:43 +02:00
|
|
|
|
|
|
|
fmt:
|
|
|
|
name: Run Rustfmt
|
|
|
|
runs-on: ubuntu-18.04
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-07-07 13:47:25 +02:00
|
|
|
- name: Cache dependencies
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.cargo
|
|
|
|
./Cargo.lock
|
|
|
|
./target
|
|
|
|
key: ${{ matrix.os }}-${{ matrix.rust}}-${{ hashFiles('Cargo.toml') }}
|
2021-06-21 19:54:43 +02:00
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
profile: minimal
|
|
|
|
toolchain: nightly
|
|
|
|
override: true
|
|
|
|
components: rustfmt
|
|
|
|
- name: Run cargo fmt
|
2021-06-23 10:21:16 +02:00
|
|
|
# Since we never ran the `build.rs` script in the benchmark directory we are missing one auto-generated import file.
|
|
|
|
# Since we want to trigger (and fail) this action as fast as possible, instead of building the benchmark crate
|
|
|
|
# we are going to create an empty file where rustfmt expects it.
|
2021-06-21 19:54:43 +02:00
|
|
|
run: |
|
|
|
|
echo -ne "\n" > benchmarks/benches/datasets_paths.rs
|
|
|
|
cargo fmt --all -- --check
|