mirror of
https://github.com/vacp2p/universal-connectivity.git
synced 2026-01-09 15:18:05 -05:00
* feat: add experimental support in go for webrtc * chore: update deps * Apply suggestions from code review * deps: bump go-libp2p * feat: increase reservation limits * chore: go mod tidy * ci: bump go-version for workflow * fix: go error * deps: bump go-libp2p-pubsub * fix: separate go and rust workflows * deps: update go deps * chore: go mod tidy --------- Co-authored-by: Daniel N <2color@users.noreply.github.com>
21 lines
384 B
YAML
21 lines
384 B
YAML
name: go-peer ci
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'go-peer/**'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
go-check:
|
|
uses: libp2p/uci/.github/workflows/go-check.yml@v0.0
|
|
with:
|
|
go-version: '1.22.x'
|
|
go-test:
|
|
uses: libp2p/uci/.github/workflows/go-test.yml@v0.0
|
|
with:
|
|
go-versions: '["1.22.x"]'
|