Skip to content
This repository was archived by the owner on Nov 28, 2025. It is now read-only.

do not forget ffi bindings #37

do not forget ffi bindings

do not forget ffi bindings #37

Workflow file for this run

name: Lint
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
check-formatting:
name: rustfmt checking ${{matrix.package}}
runs-on: windows-latest
strategy:
matrix:
package:
- winmmf
- winmmf-ffi
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
components: rustfmt
- name: rustfmt
run: cargo fmt --check --package ${{matrix.package}}
clippy:
name: Clippy ${{matrix.package}}
runs-on: windows-latest
strategy:
matrix:
package:
- winmmf
- winmmf-ffi
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
components: clippy
- name: clippy
run: cargo clippy --package ${{matrix.package}}