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