Skip to content

Commit ff60601

Browse files
author
Vladimir Kotal
authored
tidy up
1 parent 4eaccc4 commit ff60601

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,25 +23,25 @@ jobs:
2323
path: ~/.m2
2424
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
2525
restore-keys: ${{ runner.os }}-m2
26-
- name: Install pre-requisites
27-
run: ./dev/before_install
26+
- name: Install pre-requisites (Unix)
2827
if: runner.os == 'Linux' || runner.os == 'macOS'
28+
run: ./dev/before_install
2929
- name: Install Universal ctags (Windows)
3030
run: choco install universal-ctags
3131
if: runner.os == 'Windows'
32-
- name: Before build actions
33-
run: ./dev/before
32+
- name: Before build actions (Unix)
3433
if: runner.os == 'Linux' || runner.os == 'macOS'
34+
run: ./dev/before
3535
- name: Unix build
36+
if: runner.os == 'Linux' || runner.os == 'macOS'
3637
env:
3738
OPENGROK_PULL_REQUEST: ${{ github.head_ref }}
3839
OPENGROK_REPO_SLUG: ${{ github.repository }}
3940
OPENGROK_REF: ${{ github.ref }}
4041
OPENGROK_COVERALLS_TOKEN: ${{ secrets.COVERALLS_TOKEN }}
4142
OPENGROK_SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
4243
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
43-
if: runner.os == 'Linux' || runner.os == 'macOS'
4444
run: ./dev/main
4545
- name: Windows build
46-
run: mvn -B -V verify
4746
if: runner.os == 'Windows'
47+
run: mvn -B -V verify

0 commit comments

Comments
 (0)