Some checks failed
Rust / Cargo / Compile (push) Waiting to run
Rust / Cargo / Test (macOS-latest, beta) (push) Blocked by required conditions
Rust / Cargo / Test (macOS-latest, nightly) (push) Blocked by required conditions
Rust / Cargo / Test (macOS-latest, stable) (push) Blocked by required conditions
Rust / Cargo / Test (ubuntu-latest, beta) (push) Blocked by required conditions
Rust / Cargo / Test (ubuntu-latest, nightly) (push) Blocked by required conditions
Rust / Cargo / Test (ubuntu-latest, stable) (push) Blocked by required conditions
Rust / Cargo / Test (windows-latest, beta) (push) Blocked by required conditions
Rust / Cargo / Test (windows-latest, nightly) (push) Blocked by required conditions
Rust / Cargo / Test (windows-latest, stable) (push) Blocked by required conditions
Rust / Cargo / Lint (push) Has been cancelled
56 lines
1.1 KiB
YAML
56 lines
1.1 KiB
YAML
name: Rust / Cargo
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
|
|
jobs:
|
|
lint:
|
|
name: Lint
|
|
steps:
|
|
- name: Setup | Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Setup | Rust
|
|
uses: ATiltedTree/setup-rust@v1
|
|
with:
|
|
rust-version: stable
|
|
components: clippy
|
|
- name: Build | Lint
|
|
run: cargo clippy
|
|
compile:
|
|
name: Compile
|
|
steps:
|
|
- name: Setup | Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Setup | Rust
|
|
uses: ATiltedTree/setup-rust@v1
|
|
with:
|
|
rust-version: stable
|
|
- name: Build | Compile
|
|
run: cargo check
|
|
test:
|
|
name: Test
|
|
strategy:
|
|
matrix:
|
|
os:
|
|
- ubuntu-latest
|
|
- windows-latest
|
|
- macOS-latest
|
|
rust:
|
|
- stable
|
|
- beta
|
|
- nightly
|
|
runs-on: ${{ matrix.os }}
|
|
needs: [compile]
|
|
steps:
|
|
- name: Setup | Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Setup | Rust
|
|
uses: ATiltedTree/setup-rust@v1
|
|
with:
|
|
rust-version: ${{ matrix.rust }}
|
|
- name: Build | Compile
|
|
run: cargo test
|
|
|