2021-03-11 07:02:24 +00:00
|
|
|
name: build
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ main ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ main ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ${{ matrix.operating-system }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
operating-system: [ ubuntu-latest, windows-latest, macos-latest ]
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2022-02-21 06:18:43 +00:00
|
|
|
- name: Install Rust (stable)
|
2021-03-11 07:02:24 +00:00
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
2022-02-21 06:18:43 +00:00
|
|
|
toolchain: stable
|
2021-03-11 07:02:24 +00:00
|
|
|
override: true
|
|
|
|
profile: minimal
|
|
|
|
- name: Build
|
|
|
|
run: |
|
|
|
|
cargo build --workspace --verbose
|
|
|
|
- name: Test
|
|
|
|
run: |
|
|
|
|
cargo test --workspace --verbose
|
2021-06-14 05:06:39 +00:00
|
|
|
env:
|
|
|
|
RUST_BACKTRACE: 1
|
2021-03-23 17:30:05 +00:00
|
|
|
|
2022-02-24 04:14:47 +00:00
|
|
|
clippy-stable:
|
|
|
|
name: Clippy check (stable)
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: stable
|
2022-03-08 05:23:53 +00:00
|
|
|
profile: minimal
|
2022-02-24 04:14:47 +00:00
|
|
|
components: clippy
|
|
|
|
override: true
|
|
|
|
- uses: actions-rs/clippy-check@v1
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
args: --all-features --workspace
|
|
|
|
|
|
|
|
clippy-nightly:
|
2022-02-21 06:18:43 +00:00
|
|
|
name: Clippy check (nightly)
|
2021-03-23 17:30:05 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: nightly
|
2022-03-08 05:23:53 +00:00
|
|
|
profile: minimal
|
2021-03-23 17:30:05 +00:00
|
|
|
components: clippy
|
|
|
|
override: true
|
|
|
|
- uses: actions-rs/clippy-check@v1
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
args: --all-features --workspace
|