added gitea cargo test workflow

This commit is contained in:
2025-11-09 21:16:54 +02:00
parent dbaa2feb48
commit d74613aa93

View File

@@ -0,0 +1,23 @@
name: Test
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: Cargo test
runs-on: ubuntu-latest
steps:
- name: Build
uses: actions/checkout@v4
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose