Skip to content

add aysnc behavior for link creation #73

add aysnc behavior for link creation

add aysnc behavior for link creation #73

Workflow file for this run

name: CI gRPC
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v2
with:
go-version: 1.19.x
- uses: actions/checkout@v2
- name: install-deps
run: sudo apt-get install libpcap-dev
- name: run go test
run: make test
e2e:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v2
with:
go-version: 1.19.x
- uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Build e2e test env
run: make up
- name: Build docker image
run: make docker
- name: Install meshnet with GRPC link
run: make grpc=1 install
- name: Run tests
run: make e2e