2020-01-09 23:36:35 +00:00
|
|
|
name: CI
|
|
|
|
|
2020-02-27 23:32:52 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
pull_request: {}
|
2022-10-11 14:12:04 +00:00
|
|
|
schedule:
|
|
|
|
- cron: "33 4 * * 5"
|
2020-01-09 23:36:35 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
check:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
env:
|
|
|
|
RUSTFLAGS: "-D warnings"
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2022-07-28 15:25:11 +00:00
|
|
|
uses: actions/checkout@v3
|
2020-01-09 23:36:35 +00:00
|
|
|
|
|
|
|
- name: Install stable toolchain
|
2023-02-08 17:28:15 +00:00
|
|
|
uses: dtolnay/rust-toolchain@stable
|
2020-01-09 23:36:35 +00:00
|
|
|
|
2020-01-09 23:39:13 +00:00
|
|
|
- name: Check
|
|
|
|
run: cargo check --all --all-features --all-targets
|
2020-01-09 23:36:35 +00:00
|
|
|
|
|
|
|
test:
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, macOS-latest, windows-latest]
|
|
|
|
rust: [stable]
|
|
|
|
|
|
|
|
env:
|
|
|
|
RUSTFLAGS: "-D warnings"
|
|
|
|
|
|
|
|
steps:
|
2023-02-08 17:28:15 +00:00
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Install rust toolchain
|
|
|
|
uses: dtolnay/rust-toolchain@master
|
|
|
|
with:
|
|
|
|
toolchain: ${{ matrix.rust }}
|
|
|
|
|
|
|
|
- name: Test
|
|
|
|
run: cargo test --all
|
2020-01-09 23:36:35 +00:00
|
|
|
|
|
|
|
lints:
|
|
|
|
name: Lints
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2022-07-28 15:25:11 +00:00
|
|
|
uses: actions/checkout@v3
|
2020-01-09 23:36:35 +00:00
|
|
|
|
|
|
|
- name: Install stable toolchain
|
2023-02-08 17:28:15 +00:00
|
|
|
uses: dtolnay/rust-toolchain@stable
|
2020-01-09 23:36:35 +00:00
|
|
|
with:
|
|
|
|
components: rustfmt, clippy
|
|
|
|
|
|
|
|
- name: Run cargo fmt
|
2023-02-08 17:28:15 +00:00
|
|
|
run: cargo fmt --all --check
|
2020-01-09 23:36:35 +00:00
|
|
|
|
|
|
|
- name: Run cargo clippy
|
2023-02-08 17:28:15 +00:00
|
|
|
if: always()
|
|
|
|
run: cargo clippy --all-features -- -D warnings
|