From a28f3bc1dd2d21f49337704fc4ac06e8d5189479 Mon Sep 17 00:00:00 2001 From: Steven Carter <127634973+spcarte@users.noreply.github.com> Date: Tue, 28 Oct 2025 11:14:33 -0600 Subject: [PATCH] Add develop to tests.yml Updated the tests.yml file so it also runs the tests on develop --- .github/workflows/tests.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8edb846..b859bec 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -2,9 +2,9 @@ name: Main Tests on: push: - branches: [ main ] + branches: [main, develop] pull_request: - branches: [ main ] + branches: [main, develop] jobs: test: @@ -36,4 +36,5 @@ jobs: uses: codecov/codecov-action@v5 with: file: ./coverage.xml + flags: ${{ github.ref_name }} token: ${{ secrets.CODECOV_TOKEN }}