Skip to content

feat: update packages #328

feat: update packages

feat: update packages #328

Workflow file for this run

---
name: ci
on:
push:
jobs:
check:
name: check
runs-on: ubuntu-latest
steps:
- name: checkout sources
uses: actions/checkout@v7
- name: run cargo fmt
run: |
cargo fmt --all -- --check
- name: run cargo clippy
run: |
cargo clippy -- -D warnings
- run: |
cargo test