Skip to content

Commit 1d4b378

Browse files
committed
Simplify build.yml
1 parent 55f1c67 commit 1d4b378

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/build.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,23 @@ on:
1111
workflow_dispatch: {}
1212

1313
jobs:
14+
validate:
15+
name: Validation steps
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Checkout
19+
uses: actions/checkout@v4
20+
21+
- name: Run ShellCheck
22+
uses: ludeeus/action-shellcheck@master
23+
with:
24+
check_together: 'yes'
25+
scandir: './scripts'
26+
27+
- name: Validate codecov.yml
28+
shell: bash
29+
run: curl -vvv --fail --data-binary @- https://codecov.io/validate < codecov.yml
30+
1431
build:
1532
name: Build on JDK ${{ matrix.java-version }} (${{ matrix.os-name }})
1633
runs-on: ${{ matrix.os-name }}
@@ -28,6 +45,7 @@ jobs:
2845
java-version: GA
2946
- os-name: macos-latest
3047
java-version: GA
48+
3149
steps:
3250
- name: Checkout repository
3351
uses: actions/checkout@v4

0 commit comments

Comments
 (0)