Skip to content

Initial commit

Initial commit #2

Workflow file for this run

name: "Test"
on:
push:
branches:
- main
tags:
- v*
paths-ignore:
- "**.md"
pull_request:
types: [ opened, synchronize ]
paths-ignore:
- "**.md"
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.20
- name: Download Go modules
run: |
go mod download
- name: Run tests
run: |
go test -v ./...