Add workflow file

This commit is contained in:
Juno Takano 2025-12-13 18:03:21 -03:00
commit 05e7828f76

View file

@ -0,0 +1,15 @@
on: [push]
jobs:
print-content:
runs-on: docker
steps:
- name: checkout code
uses: actions/checkout@v4
- name: formatting
run: cargo fmt -- --check
- name: lints
run: cargo clippy -- -Dwarnings
- name: cargo
run: cargo check --all-targets
- name: test
run: cargo test