Skip to content

Commit 5e485a3

Browse files
authored
Improve CI Config (#127)
1 parent bda8a50 commit 5e485a3

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

.github/workflows/run-checks.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,13 @@ name: run checks
22

33
on:
44
push:
5-
branches: [ main ] # Just in case main was not up-to-date while merging PR
5+
branches: [ main ]
66
pull_request:
77
types: [ opened, synchronize ]
88

99
jobs:
1010
run:
11-
continue-on-error: true
1211
runs-on: ubuntu-latest
13-
strategy:
14-
fail-fast: false
1512
steps:
1613
- name: checkout
1714
uses: actions/checkout@v3
@@ -22,13 +19,6 @@ jobs:
2219
java-version: 17
2320
distribution: 'zulu'
2421

25-
- uses: actions/cache@v3
26-
with:
27-
path: ~/.gradle
28-
key: gradle-${{ hashFiles('gradle-checksums.txt') }}-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }}
29-
restore-keys: |
30-
gradle-${{ hashFiles('gradle-checksums.txt') }}-
31-
3222
- name: Verify project consistency
3323
run: cd .test && ./gradlew test
3424

0 commit comments

Comments
 (0)