Files
marginal/.gitea/workflows/cargo-test.yml
Kerdonov 79e72304bc
All checks were successful
Test the running changes / Test (push) Successful in 34s
remove cargo-test workflow on pull request
2025-12-22 21:52:04 +02:00

20 lines
386 B
YAML

name: Test the running changes
on:
push:
branches: [ "dev" ]
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Test
runs-on: rust-latest
steps:
- run: git clone https://git.jlux.dev/${{ gitea.repository }} . && git checkout ${{ gitea.ref_name }}
- run: cargo build --verbose
- run: cargo clippy -- -D warnings
- run: cargo test --verbose