We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5902fb8 commit 07a61d5Copy full SHA for 07a61d5
.github/workflows/test.yml
@@ -10,15 +10,25 @@ on:
10
branches: [ master ]
11
12
jobs:
13
+ pre_job:
14
+ runs-on: ubuntu-latest
15
+ outputs:
16
+ should_skip: ${{ steps.skip_check.outputs.should_skip }}
17
+ steps:
18
+ - id: skip_check
19
+ uses: fkirc/skip-duplicate-actions@v5
20
+ with:
21
+ concurrent_skipping: same_content_newer
22
+ skip_after_successful_duplicate: 'true'
23
test:
-
24
+ needs: pre_job
25
+ if: needs.pre_job.outputs.should_skip != 'true'
26
timeout-minutes: 10
27
runs-on: ubuntu-latest
28
strategy:
29
fail-fast: false
30
matrix:
31
python-version: [ '3.8', '3.9', '3.10', '3.11' ]
32
steps:
33
- uses: actions/checkout@v3
34
- name: Start the Docker container with the test data
0 commit comments