Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add concurrency group #540

Merged
merged 1 commit into from
Dec 14, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
schedule:
- cron: '0 13 * * *'

concurrency:
group: ci-${{ github.repository }}
cancel-in-progress: true

jobs:
unit:
name: Unit Tests
Expand All @@ -17,7 +21,7 @@ jobs:
java-version: '11'
- uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.10'
- name: Checkout source
uses: actions/checkout@v2.3.4
- name: Install dependencies
Expand Down Expand Up @@ -95,7 +99,7 @@ jobs:
fgrep 'Stopping system with extreme prejudice, restart true' pubber.out.2 # restart config
fgrep 'Stopping system with extreme prejudice, restart false' pubber.out.2 # auto-kill
fgrep 'Done with pubber run, exit code 193' pubber.out.2 # last_start auto-kill check

udmi:
name: Integration Tests
runs-on: ubuntu-latest
Expand Down