Tolerate multiaddrs we can't parse in handling kademlia responses. #959
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Java CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/local-s3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 11 | |
- name: Install and run ipfs | |
run: ./install-run-ipfs.sh | |
- name: Build and Package | |
run: mvn package -Dmaven.test.skip=true | |
- name: Run tests | |
timeout-minutes: 10 | |
run: mvn test |