va108xx-hal/.github/workflows/ci.yml

65 lines
1.4 KiB
YAML
Raw Normal View History

2021-11-06 01:13:48 +01:00
on: [push]
name: ci
2021-11-06 01:13:48 +01:00
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
2021-11-08 01:26:58 +01:00
target: thumbv6m-none-eabi
2021-11-06 01:13:48 +01:00
override: true
- uses: actions-rs/cargo@v1
with:
command: check
2021-11-08 11:26:43 +01:00
- uses: actions-rs/cargo@v1
with:
command: check
2021-12-12 23:49:44 +01:00
args: --examples
2021-11-06 01:13:48 +01:00
fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
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@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
2021-11-08 01:26:58 +01:00
target: thumbv6m-none-eabi
2021-11-06 01:13:48 +01:00
override: true
- run: rustup component add clippy
- uses: actions-rs/cargo@v1
with:
command: clippy
2021-12-12 23:49:44 +01:00
args: -- -D warnings
2021-11-06 01:13:48 +01:00
ci:
if: ${{ success() }}
# all new jobs must be added to this list
needs: [check, fmt, clippy]
runs-on: ubuntu-latest
steps:
- name: CI succeeded
run: exit 0