From 2370d5dc83e9f6e8693c959de8f9e9b3915cba9f Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Sun, 11 Aug 2024 21:12:35 +1000 Subject: [PATCH] Fixed CI --- .github/workflows/comprehensive-tests.yml | 30 ------------------- .../workflows/continuous integration-v2.yml | 25 ++++++++++++++++ 2 files changed, 25 insertions(+), 30 deletions(-) delete mode 100644 .github/workflows/comprehensive-tests.yml create mode 100644 .github/workflows/continuous integration-v2.yml diff --git a/.github/workflows/comprehensive-tests.yml b/.github/workflows/comprehensive-tests.yml deleted file mode 100644 index bf39341..0000000 --- a/.github/workflows/comprehensive-tests.yml +++ /dev/null @@ -1,30 +0,0 @@ -#determine the branch name -env: - BRANCH_NAME: ${{github.head_ref||github.ref_name}} - -#set the name of the tests -name: Comprehensive Tests; branch ${{env.BRANCH_NAME}} - -#trigger when these occur -on: - push: - branches: - - ${{env.BRANCH_NAME}} - pull_request: - types: - - opened - - edited - - reopened - branches: - - ${{env.BRANCH_NAME}} - workflow_dispatch: - - -#testing the workflows while nothing is functional yet -jobs: - test-placeholder: - runs-on: ubuntu-latest - - steps: - - name: make test - run: make tests diff --git a/.github/workflows/continuous integration-v2.yml b/.github/workflows/continuous integration-v2.yml new file mode 100644 index 0000000..401fce3 --- /dev/null +++ b/.github/workflows/continuous integration-v2.yml @@ -0,0 +1,25 @@ +name: Continuous Integration v2.x + +#trigger when these occur +on: + push: + branches: + - dev + pull_request: + types: + - opened + - edited + - reopened + branches: + - dev + workflow_dispatch: + +#testing the CI workflows while nothing is functional yet +jobs: + test-ubuntu-latest: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: make tests + run: make tests