Skip to content

Update copyright year 2023 -> 2024 #7

Update copyright year 2023 -> 2024

Update copyright year 2023 -> 2024 #7

Workflow file for this run

name: Main
on:
push:
branches: [main]
pull_request: {}
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
- name: Get dependencies
run: go get -v -t -d ./...
- name: Test code
run: go test -v ./...