From a4025196884c77f011354d05277207d9717c837c Mon Sep 17 00:00:00 2001 From: Kerdonov Date: Wed, 10 Dec 2025 13:49:56 +0200 Subject: [PATCH 1/6] testing workflow --- .gitea/workflows/cargo-test.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .gitea/workflows/cargo-test.yml diff --git a/.gitea/workflows/cargo-test.yml b/.gitea/workflows/cargo-test.yml new file mode 100644 index 0000000..6805e45 --- /dev/null +++ b/.gitea/workflows/cargo-test.yml @@ -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 checkout dev + - run: cargo build --verbose + - run: cargo clippy -- -D warnings + - run: cargo test --verbose From 1f0ddcf2c63e9e225e0ead952d676a215cfa244c Mon Sep 17 00:00:00 2001 From: Kerdonov Date: Wed, 10 Dec 2025 13:56:39 +0200 Subject: [PATCH 2/6] testing workflows 2 --- .gitea/workflows/cargo-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/cargo-test.yml b/.gitea/workflows/cargo-test.yml index 6805e45..965a0d0 100644 --- a/.gitea/workflows/cargo-test.yml +++ b/.gitea/workflows/cargo-test.yml @@ -17,7 +17,7 @@ jobs: steps: #- run: apt-get update -y #- uses: actions/checkout@v6 - - run: git checkout dev + - run: git clone ${{ gitea.repository }} && git checkout ${{ gitea.ref }} - run: cargo build --verbose - run: cargo clippy -- -D warnings - run: cargo test --verbose From e0ea08adcd7f493909c16d59611d6cd079099c55 Mon Sep 17 00:00:00 2001 From: Kerdonov Date: Wed, 10 Dec 2025 13:57:38 +0200 Subject: [PATCH 3/6] testing workflow 3 --- .gitea/workflows/cargo-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/cargo-test.yml b/.gitea/workflows/cargo-test.yml index 965a0d0..72ba3ff 100644 --- a/.gitea/workflows/cargo-test.yml +++ b/.gitea/workflows/cargo-test.yml @@ -17,7 +17,7 @@ jobs: steps: #- run: apt-get update -y #- uses: actions/checkout@v6 - - run: git clone ${{ gitea.repository }} && git checkout ${{ gitea.ref }} + - run: git clone https://git.jlux.dev/${{ gitea.repository }} && git checkout ${{ gitea.ref }} - run: cargo build --verbose - run: cargo clippy -- -D warnings - run: cargo test --verbose From b4d793b3faf07d7f998366e8852979c4c7b620ce Mon Sep 17 00:00:00 2001 From: Kerdonov Date: Wed, 10 Dec 2025 14:03:19 +0200 Subject: [PATCH 4/6] testing workflow 4 --- .gitea/workflows/cargo-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/cargo-test.yml b/.gitea/workflows/cargo-test.yml index 72ba3ff..8d3b76a 100644 --- a/.gitea/workflows/cargo-test.yml +++ b/.gitea/workflows/cargo-test.yml @@ -17,7 +17,7 @@ jobs: steps: #- run: apt-get update -y #- uses: actions/checkout@v6 - - run: git clone https://git.jlux.dev/${{ gitea.repository }} && git checkout ${{ gitea.ref }} + - run: git clone ${{ gitea.repositoryUrl }} . && git checkout ${{ gitea.ref }} - run: cargo build --verbose - run: cargo clippy -- -D warnings - run: cargo test --verbose From 48c16130e52687312c7f3df9ef4bd3b0a0de6746 Mon Sep 17 00:00:00 2001 From: Kerdonov Date: Wed, 10 Dec 2025 14:04:16 +0200 Subject: [PATCH 5/6] testing workflow 5 --- .gitea/workflows/cargo-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/cargo-test.yml b/.gitea/workflows/cargo-test.yml index 8d3b76a..72e4ea2 100644 --- a/.gitea/workflows/cargo-test.yml +++ b/.gitea/workflows/cargo-test.yml @@ -17,7 +17,7 @@ jobs: steps: #- run: apt-get update -y #- uses: actions/checkout@v6 - - run: git clone ${{ gitea.repositoryUrl }} . && git checkout ${{ gitea.ref }} + - run: git clone https://git.jlux.dev/${{ gitea.repository }} . && git checkout ${{ gitea.ref }} - run: cargo build --verbose - run: cargo clippy -- -D warnings - run: cargo test --verbose From 617f124ac1046037bac14327baaf39a42dd5509e Mon Sep 17 00:00:00 2001 From: Kerdonov Date: Wed, 10 Dec 2025 14:21:18 +0200 Subject: [PATCH 6/6] testing workflow 5 --- .gitea/workflows/cargo-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/cargo-test.yml b/.gitea/workflows/cargo-test.yml index 72e4ea2..77ee916 100644 --- a/.gitea/workflows/cargo-test.yml +++ b/.gitea/workflows/cargo-test.yml @@ -17,7 +17,7 @@ jobs: steps: #- run: apt-get update -y #- uses: actions/checkout@v6 - - run: git clone https://git.jlux.dev/${{ gitea.repository }} . && git checkout ${{ gitea.ref }} + - 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