Skip to content

Commit

Permalink
Merge pull request #561 from gassmoeller/improve_tester_efficiency
Browse files Browse the repository at this point in the history
Improve efficiency of github actions workflows
  • Loading branch information
gassmoeller authored Feb 13, 2024
2 parents a9ea2dc + bc0e464 commit 23c8592
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ name: benchmarks

on: [pull_request]

concurrency:
group: ${{ github.actor }}-${{ github.ref }}
cancel-in-progress: true

jobs:
benchmarks:
strategy:
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
name: tests

on: [push, pull_request]
on:
push:
branches:
- 'main'
- 'GWB-*'
pull_request:

concurrency:
group: ${{ github.actor }}-${{ github.ref }}
cancel-in-progress: true

jobs:
test_indentation:
Expand Down

0 comments on commit 23c8592

Please sign in to comment.