Compare commits

...

7 Commits

Author SHA1 Message Date
24fc2deae1 Merge pull request 'Clean testing workflow' (#1) from dev into master
Reviewed-on: #1
2025-12-10 12:25:06 +00:00
617f124ac1 testing workflow 5
Some checks failed
Test the running changes / Test (push) Failing after 24s
2025-12-10 14:21:18 +02:00
48c16130e5 testing workflow 5
Some checks failed
Test the running changes / Test (push) Failing after 2s
2025-12-10 14:04:16 +02:00
b4d793b3fa testing workflow 4
Some checks failed
Test the running changes / Test (push) Failing after 2s
2025-12-10 14:03:19 +02:00
e0ea08adcd testing workflow 3
Some checks failed
Test the running changes / Test (push) Failing after 2s
2025-12-10 13:57:38 +02:00
1f0ddcf2c6 testing workflows 2
Some checks failed
Test the running changes / Test (push) Failing after 2s
2025-12-10 13:56:39 +02:00
a402519688 testing workflow
Some checks failed
Test the running changes / Test (push) Failing after 2s
2025-12-10 13:49:56 +02: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