add aysnc behavior for link creation #73
Workflow file for this run
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: 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 | |