From 061fba52cf5105478e5f555c533f998a4643925f Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Sun, 11 Aug 2024 07:15:31 +0100 Subject: [PATCH] fix: test runs on push to next and uses next branch --- .forgejo/workflows/test.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml index 62d1d6a..7a98578 100644 --- a/.forgejo/workflows/test.yml +++ b/.forgejo/workflows/test.yml @@ -1,4 +1,7 @@ -on: [push] +on: + push: + branches: + - next jobs: test: runs-on: docker @@ -6,16 +9,16 @@ jobs: - uses: actions/checkout@v4 - name: Test - uses: https://git.kemitix.net/kemitix/rust@v1.80.0 + uses: https://git.kemitix.net/kemitix/rust@next with: args: test - name: Build - uses: https://git.kemitix.net/kemitix/rust@v1.80.0 + uses: https://git.kemitix.net/kemitix/rust@next with: args: build - name: Run - uses: https://git.kemitix.net/kemitix/rust@v1.80.0 + uses: https://git.kemitix.net/kemitix/rust@next with: args: run