We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55f1c67 commit 1d4b378Copy full SHA for 1d4b378
.github/workflows/build.yml
@@ -11,6 +11,23 @@ on:
11
workflow_dispatch: {}
12
13
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
31
build:
32
name: Build on JDK ${{ matrix.java-version }} (${{ matrix.os-name }})
33
runs-on: ${{ matrix.os-name }}
@@ -28,6 +45,7 @@ jobs:
45
java-version: GA
46
- os-name: macos-latest
47
48
49
steps:
50
- name: Checkout repository
51
uses: actions/checkout@v4
0 commit comments