We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efadba2 commit 6567a72Copy full SHA for 6567a72
.github/workflows/ci_pr_tests.yml
@@ -2,12 +2,17 @@ name: Tests
2
3
on: pull_request
4
5
+# This allows a subsequently queued workflow run to interrupt previous runs
6
+concurrency:
7
+ group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
8
+ cancel-in-progress: true
9
+
10
jobs:
11
tests:
12
name: Run Tests
13
runs-on: macos-13
- # env:
- # DEVELOPER_DIR: /Applications/Xcode_14.3.1.app/Contents/Developer
14
+ env:
15
+ DEVELOPER_DIR: /Applications/Xcode_14.3.1.app/Contents/Developer
16
steps:
17
- name: Checkout the Git repository
18
uses: actions/checkout@v3
0 commit comments