Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
markpatton committed Dec 13, 2023
1 parent e64610c commit f914026
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit f914026

Please sign in to comment.