Skip to content

chore: Bump to latest module versions in @observerly/alpacago. #307

chore: Bump to latest module versions in @observerly/alpacago.

chore: Bump to latest module versions in @observerly/alpacago. #307

Workflow file for this run

name: alpacago/ci
on:
pull_request:
branches:
- main
paths-ignore:
- '**.md'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
name: CI/CD Build
strategy:
matrix:
go: [ '1.18.x',]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Go Setup
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Tailscale
uses: tailscale/github-action@ce41a99162202a647a4b24c30c558a567b926709
with:
authkey: ${{ secrets.TAILSCALE_EPHEMERAL_AUTH_KEY }}
version: "1.36.0"
- name: Go Test
run: go test ./... -race -coverprofile=coverage.txt -covermode=atomic