Skip to content

Merge pull request #79 from grokify/dependabot/github_actions/golangc… #135

Merge pull request #79 from grokify/dependabot/github_actions/golangc…

Merge pull request #79 from grokify/dependabot/github_actions/golangc… #135

Workflow file for this run

name: test
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
test:
strategy:
matrix:
go-version: [1.21.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
if: success()
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4.1.1
- name: Run tests
run: go test -v -covermode=count ./...