Skip to content

Commit c988667

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

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/build.yml

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

1313
jobs:
14+
<<<<<<< HEAD
15+
=======
16+
validate:
17+
name: Validation steps
18+
runs-on: ubuntu-latest
19+
steps:
20+
- name: Checkout
21+
uses: actions/checkout@v4
22+
23+
- name: Run ShellCheck
24+
uses: ludeeus/action-shellcheck@master
25+
with:
26+
check_together: 'yes'
27+
scandir: './scripts'
28+
29+
- name: Validate codecov.yml
30+
shell: bash
31+
run: curl -vvv --fail --data-binary @- https://codecov.io/validate < codecov.yml
32+
33+
>>>>>>> f3395c7d (Simplify build.yml)
1434
build:
1535
name: Build on JDK ${{ matrix.java-version }} (${{ matrix.os-name }})
1636
runs-on: ${{ matrix.os-name }}
@@ -28,6 +48,7 @@ jobs:
2848
java-version: GA
2949
- os-name: macos-latest
3050
java-version: GA
51+
3152
steps:
3253
- name: Checkout repository
3354
uses: actions/checkout@v4

0 commit comments

Comments
 (0)