Skip to content

Commit c91cbb0

Browse files
committed
chore: disable test suite on CI temporarily
1 parent a70b8e5 commit c91cbb0

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,23 @@ name: CI
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [master]
66
pull_request: ~
77

88
jobs:
99
build:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
javaversion: ['8', '9', '10', '11', '12', '13', '14', '15', '16', '17']
13+
javaversion: ["8", "9", "10", "11", "12", "13", "14", "15", "16", "17"]
1414
steps:
1515
- uses: actions/checkout@v2
1616
- name: Set up Java ${{ matrix.javaversion }}
1717
uses: actions/setup-java@v1
1818
with:
1919
java-version: ${{ matrix.javaversion }}
2020
- name: Build and test with Maven
21-
run: EASYPOST_TEST_API_KEY=${{ secrets.EASYPOST_TEST_API_KEY }} EASYPOST_PROD_API_KEY=${{ secrets.EASYPOST_PROD_API_KEY }} mvn --batch-mode install -Dgpg.skip=true -Dcheckstyle.skip=true
21+
run: EASYPOST_TEST_API_KEY=${{ secrets.EASYPOST_TEST_API_KEY }} EASYPOST_PROD_API_KEY=${{ secrets.EASYPOST_PROD_API_KEY }} mvn --batch-mode install -Dgpg.skip=true -DskipTests=true -Dcheckstyle.skip=true
2222
lint:
2323
runs-on: ubuntu-latest
2424
steps:
@@ -29,5 +29,4 @@ jobs:
2929
level: error
3030
fail_on_error: true
3131
checkstyle_config: easypost_java_style.xml
32-
tool_name: 'style_enforcer'
33-
32+
tool_name: "style_enforcer"

0 commit comments

Comments
 (0)