Skip to content

Merge pull request #460 from gotd/dependabot/github_actions/actions/c… #1104

Merge pull request #460 from gotd/dependabot/github_actions/actions/c…

Merge pull request #460 from gotd/dependabot/github_actions/actions/c… #1104

Workflow file for this run

name: CI
on:
push:
tags:
- v*
branches:
- main
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.runner }}
strategy:
fail-fast: false
matrix:
runner:
- ubuntu-latest
- macos-latest
- windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v7
- name: Install Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Download dependencies
run: go mod download
- name: Run tests
run: go test -race ./...