Skip to content

#18 Refactor to template #1

#18 Refactor to template

#18 Refactor to template #1

Workflow file for this run

# Based on
# - https://github.com/marketplace/actions/setup-go-environment
name: go-test-linux.yaml
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: ["1.20"]
name: Go ${{ matrix.go }} - linux
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Run go test
run: go test -v -p 1 ./...