Skip to content

repository: add vcluster tool #88

repository: add vcluster tool

repository: add vcluster tool #88

Workflow file for this run

name: Check
on: "push"
jobs:
check-lin:
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: "true"
- uses: actions-rs/cargo@v1
with:
command: test
args: >
--verbose
check-mac:
runs-on: 'macos-latest'
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: "true"
- uses: actions-rs/cargo@v1
with:
command: test
args: >
--verbose
clippy:
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: "true"
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: >
--all-features