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