mirror of
https://github.com/linux-msm/sk8brd.git
synced 2026-02-25 13:13:15 -08:00
28 lines
563 B
YAML
28 lines
563 B
YAML
name: Rust
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
os: [macos-latest, ubuntu-latest, windows-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: cargo build --verbose
|
|
|
|
rust:
|
|
name: Lint Rust code
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Cargo fmt
|
|
run: cargo fmt --all -- --check
|
|
- name: Cargo clippy
|
|
run: cargo clippy --workspace --all-targets -- -D warnings
|
|
- name: Cargo test
|
|
run: cargo test --workspace
|