Merge pull request 'Clean testing workflow' (#1) from dev into master

Reviewed-on: #1
This commit is contained in:
2025-12-10 12:25:06 +00:00

View File

@@ -0,0 +1,23 @@
name: Test the running changes
on:
push:
branches: [ "dev" ]
#pull_request:
# branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Test
runs-on: rust-latest
steps:
#- run: apt-get update -y
#- uses: actions/checkout@v6
- 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