Skip to content

The idea of this PR is to study the migration of this project to Rust 🦀 #46

The idea of this PR is to study the migration of this project to Rust 🦀

The idea of this PR is to study the migration of this project to Rust 🦀 #46

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
- run: rustup component add rustfmt
- run: cargo +nightly fmt --check
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo clippy
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo test