Skip to content

Commit

Permalink
chore: remove step
Browse files Browse the repository at this point in the history
  • Loading branch information
prolific117 committed Sep 24, 2024
1 parent 665c2a2 commit 5ebb444
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 22 deletions.
22 changes: 0 additions & 22 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,28 +24,6 @@ jobs:
- uses: actions/upload-artifact@v2
with:
path: "~/junit"
test_library_jdk9:
runs-on: ubuntu-latest
container:
image: openjdk:9
steps:
- uses: actions/checkout@v2
- name: Test
run: |-
export TERM=${TERM:-dumb}
./install_crypto_deps.sh
./gradlew test
- name: Save test results
run: |-
mkdir -p ~/junit
find . -type f -regex "$OUT_DIR/build/test-results/test/.*xml" -exec cp {} ~/junit/ \;
if: always()
- uses: actions/upload-artifact@v2
with:
path: "~/junit"
- uses: actions/upload-artifact@v2
with:
path: "~/junit"
test_library_jdk11:
runs-on: ubuntu-latest
container:
Expand Down
1 change: 1 addition & 0 deletions src/main/java/com/gocardless/http/HttpClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ public class HttpClient {
static {
ImmutableMap.Builder<String, String> builder = ImmutableMap.builder();
builder.put("GoCardless-Version", "2015-07-06");
builder.put("Accept", "application/json");
builder.put("GoCardless-Client-Library", "gocardless-pro-java");
builder.put("GoCardless-Client-Version", "5.20.0");
HEADERS = builder.build();
Expand Down

0 comments on commit 5ebb444

Please sign in to comment.