mirror of
https://github.com/neodyland/sbv2-api.git
synced 2026-05-25 02:00:38 +00:00
fix: ci
This commit is contained in:
31
.github/workflows/lint.yml
vendored
Normal file
31
.github/workflows/lint.yml
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
name: Lint
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
check:
|
||||
runs-on: ${{ matrix.machine.runner }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
machine:
|
||||
- platform: amd64
|
||||
runner: ubuntu-latest
|
||||
- platform: arm64
|
||||
runner: ubuntu-24.04-arm
|
||||
components:
|
||||
- rustfmt
|
||||
- clippy
|
||||
steps:
|
||||
- name: Setup
|
||||
uses: actions/checkout@v4
|
||||
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
||||
with:
|
||||
components: ${{ matrix.components }}
|
||||
- name: Format
|
||||
if: ${{ matrix.components == 'rustfmt' }}
|
||||
run: cargo fmt --all -- --check
|
||||
- name: Lint
|
||||
if: ${{ matrix.components == 'clippy' }}
|
||||
run: cargo clippy --all-targets --all-features -- -D warnings
|
||||
Reference in New Issue
Block a user