Skip to content

Commit 0e647e1

Browse files
Fixed branch names in test.yml
1 parent a25f920 commit 0e647e1

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,18 @@ name: Run all tests
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [ main ]
66
pull_request:
7-
branches: [ master ]
7+
branches: [ main ]
88
workflow_dispatch:
99

1010
jobs:
1111
test:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v2
15+
- name: Check out code
16+
uses: actions/checkout@v2
1617

1718
- name: Use java ${{ matrix.java-version }}
1819
uses: actions/setup-java@v2
@@ -24,4 +25,4 @@ jobs:
2425
env:
2526
APPLITOOLS_API_KEY: ${{ secrets.APPLITOOLS_API_KEY }}
2627
HEADLESS: true
27-
run: mvn test
28+
run: mvn test

0 commit comments

Comments
 (0)