nushell/.github/workflows/ci.yml

40 lines
743 B
YAML
Raw Normal View History

2021-09-04 10:22:49 +02:00
on: [push, pull_request]
2021-09-04 09:52:28 +02:00
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 10:05:36 +02:00
- uses: actions-rs/cargo@v1
with:
command: build
2021-09-04 09:52:28 +02: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