From c4297847755ec0d224ca367653c179825d01f5cd Mon Sep 17 00:00:00 2001 From: Joachim Lusiardi Date: Wed, 30 Oct 2024 13:06:26 +0100 Subject: [PATCH] run tests on all branches --- .gitea/workflows/non_main.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitea/workflows/non_main.yaml diff --git a/.gitea/workflows/non_main.yaml b/.gitea/workflows/non_main.yaml new file mode 100644 index 0000000..07a847f --- /dev/null +++ b/.gitea/workflows/non_main.yaml @@ -0,0 +1,16 @@ +name: publish package +on: + push: + branches-ignore: + - main + +jobs: + Explore-Gitea-Actions: + runs-on: ubuntu-latest + steps: + - name: Check out repository code + uses: actions/checkout@v4 + - name: run tests + run: | + cd ${{ gitea.workspace }} + cargo test \ No newline at end of file