Skip to content

fix: cargo fmt and clippy warnings #33

fix: cargo fmt and clippy warnings

fix: cargo fmt and clippy warnings #33

Workflow file for this run

name: Rust
on:
push:
branches:
- "stable"
pull_request:
branches:
- "stable"
- "dev"
env:
CARGO_TERM_COLOR: always
jobs:
style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check style
run: make lint
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Clippy
run: make clippy
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: make build
test:
runs-on: ubuntu-latest
needs:
- build
steps:
- uses: actions/checkout@v4
- name: Test
run: make test