From b741e44b22253f3d8eb7d0ef0b58a8200773963f Mon Sep 17 00:00:00 2001 From: Josh Humphries Date: Mon, 25 Sep 2023 12:43:38 +0100 Subject: [PATCH] ci: add tests on next to ci --- .github/workflows/main.yml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4aa380c..c2fab90 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -5,7 +5,7 @@ on: workflow_dispatch: jobs: - test: + test_latest: runs-on: ubuntu-latest steps: @@ -19,3 +19,17 @@ jobs: env: COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} run: docker-compose run -e COVERALLS_REPO_TOKEN latest bash /opt/scripts/run-tests.sh -c ckanext.ldap + + test_next: + runs-on: ubuntu-latest + + steps: + - name: Checkout source code + uses: actions/checkout@v3 + + - name: Build images + run: docker-compose build + + - name: Run tests + run: docker-compose run next bash /opt/scripts/run-tests.sh -c ckanext.ldap +