Skip to content

Change handling of duplicates more generally. #33

Change handling of duplicates more generally.

Change handling of duplicates more generally. #33

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Tests
on:
pull_request:
branches: ["main"]
workflow_call:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: szenius/set-timezone@v1.0
with:
timezoneLinux: "Europe/Berlin"
timezoneMacos: "Europe/Berlin"
timezoneWindows: "Europe/Berlin"
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19.6
cache: true
- name: Test
run: go test -v ./...