Skip to content

Appease clippy

Appease clippy #36

Workflow file for this run

name: lint & test
on:
push:
branches: [ "develop" ]
env:
RUSTFLAGS: "-D warnings"
jobs:
lint:
runs-on: ubuntu-22.04
steps:
- name: setup rust cache
uses: Swatinem/rust-cache@v2
- name: checkout repository
uses: actions/checkout@v4
- name: install tools
run: |
sudo apt-get install musl-tools -y
rustup target add x86_64-unknown-linux-musl
- name: lint
run: cargo clippy