mirror of
https://github.com/Swatinem/rust-cache
synced 2025-04-05 21:24:07 +00:00
31 lines
553 B
YAML
31 lines
553 B
YAML
name: simple
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
simple:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
|
|
name: Test `cargo check/test` on ${{ matrix.os }}
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- run: rustup toolchain install stable --profile minimal
|
|
|
|
- uses: ./
|
|
with:
|
|
workspaces: tests
|
|
|
|
- run: |
|
|
cargo check
|
|
cargo test
|
|
working-directory: tests
|