zero2prod/.forgejo/workflows/ci.yaml
Jasper Ras d112af4be7
Some checks failed
/ ci (push) Failing after 2s
debug ci workflow
2026-02-26 22:26:21 +01:00

18 lines
411 B
YAML

on: [push]
jobs:
ci:
runs-on: native
steps:
- name: checkout code
uses: actions/checkout@v4
- run: ls -lah
- 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