3
0
Fork 0
mirror of https://github.com/Swatinem/rust-cache synced 2025-04-05 21:24:07 +00:00
rust-cache/.github/workflows/selftest.yml

78 lines
1.5 KiB
YAML

name: CI
on: [push, pull_request]
jobs:
simple:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
name: Test root check/test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- run: |
rustup toolchain install --profile minimal stable
rustup default stable
- uses: ./
with:
workspace-paths: tests
- run: |
cd tests
cargo check
cargo test
install:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
name: Test `cargo install` on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- run: |
rustup toolchain install --profile minimal stable
rustup default stable
- uses: ./
- run: cargo install cargo-deny --locked
workspaces:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
name: Test multiple workspaces on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- run: |
rustup toolchain install --profile minimal --target wasm32-unknown-unknown stable
rustup default stable
- uses: ./
with:
workspace-paths: |
tests
tests/wasm-workspace
- run: |
cd tests
cargo check
cd wasm-workspace
cargo check