bakare/.github/workflows/test.yml

60 lines
1.3 KiB
YAML
Raw Normal View History

2019-09-23 13:00:10 +01:00
on: [push, pull_request]
name: Continuous integration
2019-09-07 15:14:39 +01:00
jobs:
2019-09-23 13:00:10 +01:00
check:
name: Check
2019-09-07 15:14:39 +01:00
runs-on: ubuntu-latest
steps:
2019-09-23 13:00:10 +01:00
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: check
test:
name: Test Suite
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: test
fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- run: rustup component add rustfmt
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- run: rustup component add clippy
- uses: actions-rs/cargo@v1
2019-09-07 15:14:39 +01:00
with:
2019-09-23 13:00:10 +01:00
command: clippy
args: -- -D warnings