rust-cache/.github/workflows/selftest.yml

78 lines
1.6 KiB
YAML
Raw Normal View History

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: |
2022-07-09 18:38:23 +08:00
rustup toolchain install stable --profile minimal
rustup default stable
- uses: ./
with:
2022-07-09 21:39:43 +08:00
workspaces: tests
- run: |
cargo check
cargo test
2022-07-09 21:28:28 +08:00
working-directory: tests
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: |
2022-07-09 18:38:23 +08:00
rustup toolchain install stable --profile minimal
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: |
2022-07-09 18:38:23 +08:00
rustup toolchain install stable --profile minimal --target wasm32-unknown-unknown
rustup default stable
- uses: ./
2021-06-29 05:18:07 +08:00
with:
2022-07-09 21:39:43 +08:00
workspaces: |
tests
tests/wasm-workspace
2022-07-09 21:28:28 +08:00
- run: cargo check
working-directory: tests
- run: cargo check
working-directory: tests/wasm-workspace