Skip to content

Bump tailscale.com from 1.38.1 to 1.38.2 #42

Bump tailscale.com from 1.38.1 to 1.38.2

Bump tailscale.com from 1.38.1 to 1.38.2 #42

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
build:
name: Test
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.17
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
run: go build -v .
- name: Test
run: make test
- name: Integration tests
run: make test-integration