Skip to content

🦀 Migrated project to Rust 🦀 #10

🦀 Migrated project to Rust 🦀

🦀 Migrated project to Rust 🦀 #10

Workflow file for this run

on: [push, pull_request]
name: Continuous integration
jobs:
test:
name: "Test"
strategy:
matrix:
cmd: [check, fmt,clippy]
include:
- cmd: fmt
arg: "--all -- --check"
- cmd: clippy
arg: "-- -D warnings"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: ${{ matrix.cmd }}
args: ${{ matrix.arg }}