From f9140264e10ca5c48996bbfc3b722d81609a76d8 Mon Sep 17 00:00:00 2001 From: Mark Patton Date: Wed, 13 Dec 2023 14:52:05 -0500 Subject: [PATCH] Fixes --- .github/workflows/ci.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 37eed34e..37ce485c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,21 +1,20 @@ name: main Continuous Integration -on: [ pull_request, workflow_dispatch, workflow_call ] +on: [pull_request, workflow_dispatch, workflow_call] concurrency: group: ci-${{ github.head_ref || github.ref }} cancel-in-progress: true jobs: - print-workflow-description: - runs-on: ubuntu-latest - steps: - - run: echo "This is a CI build of branch ${{ github.ref }} in repository ${{ github.repository }}" - - run: echo "This job was triggered by a ${{ github.event_name }} event and is running on a ${{ runner.os }} server" - - call-tests: + test: name: Run Unit & Integration Tests runs-on: ubuntu-latest steps: + - name: Print description + - run: | + echo "This is a CI build of branch ${{ github.ref }} in repository ${{ github.repository }}" + echo "This job was triggered by a ${{ github.event_name }} event and is running on a ${{ runner.os }} server" + - name: Checkout the repository uses: actions/checkout@v3