3
0
Fork 0
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:
Arpad Borsos 2022-07-09 12:23:37 +02:00
parent 260a713186
commit fc84c9d9a3
No known key found for this signature in database
GPG key ID: FC7BCA77824B3298
11 changed files with 55 additions and 14 deletions

View file

@ -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

View file