en/.forgejo/workflows/check.yaml
2025-12-13 18:03:21 -03:00

15 lines
348 B
YAML

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