Skip to content

Replaced wercker CI (now defunct) with github actions (#32) #1

Replaced wercker CI (now defunct) with github actions (#32)

Replaced wercker CI (now defunct) with github actions (#32) #1

Workflow file for this run

name: Go
on:
push:
branches: ['*']
tags: ['v*']
pull_request:
branches: ['*']
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-latest']
go: ['stable']
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
cache: false
go-version: ${{ matrix.go }}
- name: Download Dependencies
run: go mod download
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...