turning off github workflows because they don't play nice with libp2p

This commit is contained in:
херетик
2023-05-29 15:43:21 +01:00
parent 3968ad51b6
commit 69de0b1d65

View File

@@ -1,28 +0,0 @@
# This workflow will release a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "master", "protocol" ]
pull_request:
branches: [ "master", "protocol" ]
jobs:
simple:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Build Everything
run: go build ./...
- name: Testing All in pkg/
run: go test ./pkg/...