mirror of
https://github.com/Swatinem/rust-cache
synced 2025-04-05 21:24:07 +00:00
move selftests to subdirectory and run more selftests
This commit is contained in:
parent
260a713186
commit
fc84c9d9a3
69
.github/workflows/selftest.yml
vendored
69
.github/workflows/selftest.yml
vendored
|
@ -3,34 +3,75 @@ name: CI
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
selftest:
|
simple:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||||
|
|
||||||
name: Test Action on ${{ matrix.os }}
|
name: Test root check/test on ${{ matrix.os }}
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
- uses: actions-rs/toolchain@v1
|
- run: |
|
||||||
with:
|
rustup toolchain install --profile minimal stable
|
||||||
toolchain: stable
|
rustup default stable
|
||||||
profile: minimal
|
|
||||||
override: true
|
|
||||||
|
|
||||||
- uses: ./
|
- uses: ./
|
||||||
with:
|
with:
|
||||||
cache-on-failure: true
|
workspace-paths: tests
|
||||||
workspace-paths: |
|
|
||||||
./
|
|
||||||
wasm-workspace/
|
|
||||||
|
|
||||||
- run: |
|
- run: |
|
||||||
cargo install cargo-deny --locked
|
cd tests
|
||||||
cargo check
|
cargo check
|
||||||
cargo test
|
cargo test
|
||||||
rustup target install wasm32-unknown-unknown
|
|
||||||
cd wasm-workspace && cargo check
|
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
|
||||||
|
|
0
Cargo.lock → tests/Cargo.lock
generated
0
Cargo.lock → tests/Cargo.lock
generated
Loading…
Reference in a new issue