mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-04 21:01:21 +08:00
safe the environment, skip duplicate test runs
This commit is contained in:
parent
a65a3c677a
commit
34b89dba92
12
.github/workflows/ci.yml
vendored
12
.github/workflows/ci.yml
vendored
@ -17,7 +17,19 @@ env:
|
||||
MAVEN_OPTS: -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
|
||||
|
||||
jobs:
|
||||
check_duplicate:
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
should_skip: ${{ steps.skip_check.outputs.should_skip }}
|
||||
steps:
|
||||
- id: skip_check
|
||||
uses: fkirc/skip-duplicate-actions@master
|
||||
with:
|
||||
concurrent_skipping: 'same_content_newer'
|
||||
|
||||
build:
|
||||
needs: check_duplicate
|
||||
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user