mirror of
https://github.com/netbirdio/netbird.git
synced 2025-03-05 02:11:13 +01:00
* chore: update to go 1.17 * fix: update workflows go version * fix: golint errors/update grpc
59 lines
1.4 KiB
YAML
59 lines
1.4 KiB
YAML
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
name: Test
|
|
jobs:
|
|
test:
|
|
strategy:
|
|
matrix:
|
|
go-version: [1.17.x]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Install Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Test
|
|
run: GOBIN=$(which go) && sudo --preserve-env=GOROOT $GOBIN test -p 1 ./...
|
|
|
|
test_build:
|
|
strategy:
|
|
matrix:
|
|
os: [ windows, linux, darwin ]
|
|
go-version: [1.17.x]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Install Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
|
|
- name: Cache Go modules
|
|
uses: actions/cache@v1
|
|
with:
|
|
path: ~/go/pkg/mod
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-go-
|
|
|
|
- name: Install modules
|
|
run: go mod tidy
|
|
|
|
- name: run build client
|
|
run: GOOS=${{ matrix.os }} go build .
|
|
working-directory: client
|
|
|
|
- name: run build management
|
|
run: GOOS=${{ matrix.os }} go build .
|
|
working-directory: management
|
|
|
|
- name: run build signal
|
|
run: GOOS=${{ matrix.os }} go build .
|
|
working-directory: signal |