zero2prod/.forgejo/workflows/ci.yaml
Jasper Ras faf8b603ae
Some checks failed
/ ci (push) Failing after 13m31s
try to set up the ci workflow as described in the book
2026-02-26 21:54:30 +01:00

17 lines
392 B
YAML

on: [push]
jobs:
ci:
runs-on: [native]
steps:
- name: checkout code
uses: actions/checkout@v4
- name: tests
run : cargo test
- name: linting
run : cargo clippy -- -D warnings
- name: format
run : cargo fmt
- name: install cargo audit
run : cargo install cargo-audit
- name: audit
run : cargo audit