mirror of
https://github.com/Swatinem/rust-cache.git
synced 2024-11-24 07:16:08 +08:00
30 lines
536 B
YAML
30 lines
536 B
YAML
|
name: CI
|
||
|
|
||
|
on: [push, pull_request]
|
||
|
|
||
|
jobs:
|
||
|
selftest:
|
||
|
strategy:
|
||
|
fail-fast: false
|
||
|
matrix:
|
||
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
||
|
|
||
|
name: Test Action on ${{ matrix.os }}
|
||
|
runs-on: ${{ matrix.os }}
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
|
||
|
- uses: actions-rs/toolchain@v1
|
||
|
with:
|
||
|
toolchain: stable
|
||
|
profile: minimal
|
||
|
override: true
|
||
|
|
||
|
- uses: ./
|
||
|
|
||
|
- run: |
|
||
|
cargo install cargo-deny --locked
|
||
|
cargo check
|
||
|
cargo test
|