Skip to content

Update license years #13

Update license years

Update license years #13

Workflow file for this run

name: build
on:
- push
env:
GO_VERSION: 1.18
jobs:
build:
name: tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- name: Install packages
run: go mod download
- name: Execute tests
run: make test