Skip to content

Update dependencies and add formatting and clippy checks to the CI pi… #45

Update dependencies and add formatting and clippy checks to the CI pi…

Update dependencies and add formatting and clippy checks to the CI pi… #45

Workflow file for this run

name: Rust
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
ci:
name: CI
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Format
run: cargo fmt --all -- --check --verbose
- name: Clippy
run: cargo clippy --verbose
- name: Test
run: cargo test --verbose