zoxide/.github/workflows/cargo-test.yml

21 lines
395 B
YAML
Raw Normal View History

2020-10-01 18:50:32 +00:00
name: cargo-test
on:
push:
pull_request:
jobs:
2020-10-01 20:23:00 +00:00
test:
2020-10-01 18:50:32 +00:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: test
args: --workspace --all-features --no-fail-fast