Skip to content

Commit

Permalink
add hp workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
diegomrsantos committed Dec 3, 2023
1 parent 93925ac commit 7a082d7
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/hole-punching.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Interoperability Testing
on:
pull_request:
push:
branches:
- unstable
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
run-holepunching-interop:
name: Run hole-punch interoperability tests
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v3
- name: Build image
run: docker buildx build --load -t nim-libp2p-head -f tests/hole-punching-interop/Dockerfile .
- name: Run tests
uses: libp2p/test-plans/.github/actions/run-interop-hole-punch-test@master
with:
test-filter: rust-libp2p-head
extra-versions: ${{ github.workspace }}/hole-punching-tests/version.json

0 comments on commit 7a082d7

Please sign in to comment.