nushell/.github/workflows/ci.yml

40 lines
727 B
YAML
Raw Normal View History

2021-09-04 07:52:28 +00:00
on: push
name: Continuous integration
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
components: rustfmt, clippy
2021-09-04 08:05:36 +00:00
- uses: actions-rs/cargo@v1
with:
command: build
2021-09-04 07:52:28 +00:00
- uses: actions-rs/cargo@v1
with:
command: test
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings