2020-12-16 09:02:52 +00:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: ['main']
|
|
|
|
pull_request:
|
|
|
|
schedule:
|
|
|
|
- cron: "25 6 * * 5"
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
|
|
rust: [stable, beta]
|
|
|
|
exclude:
|
|
|
|
- os: macos-latest
|
|
|
|
rust: beta
|
|
|
|
- os: windows-latest
|
|
|
|
rust: beta
|
|
|
|
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
profile: minimal
|
|
|
|
toolchain: ${{ matrix.rust }}
|
|
|
|
override: true
|
|
|
|
- uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: build
|
2021-03-18 10:17:32 +00:00
|
|
|
args: -p instant-distance --all-features --all-targets
|
2020-12-16 09:02:52 +00:00
|
|
|
- uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: test
|
2021-03-18 10:17:32 +00:00
|
|
|
args: -p instant-distance --all-features
|
2020-12-16 09:02:52 +00:00
|
|
|
|
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
profile: minimal
|
|
|
|
toolchain: stable
|
|
|
|
override: true
|
|
|
|
components: rustfmt, clippy
|
|
|
|
- uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: fmt
|
|
|
|
args: --all -- --check
|
|
|
|
- uses: actions-rs/cargo@v1
|
|
|
|
if: always()
|
|
|
|
with:
|
|
|
|
command: clippy
|
|
|
|
args: --workspace --all-targets --all-features -- -D warnings
|
|
|
|
|
|
|
|
audit:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: EmbarkStudios/cargo-deny-action@v1
|