Compare commits

..

3 commits

Author SHA1 Message Date
8bf1be32fe fix compilation
Some checks failed
PR Check / lint-and-format (pull_request) Failing after 42s
2024-10-22 11:51:35 +02:00
73c28e5e76 bump dependencies 2024-10-22 11:51:35 +02:00
e9441dba46
PR Check 2024-10-22 11:49:57 +02:00

View file

@ -0,0 +1,20 @@
name: PR Check
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
lint-and-format:
container:
image: rust:latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run format check
run: cargo fmt --check
- name: Run Clippy
run: cargo clippy