Skip to content

fix: 🐛 Fixes #35 #76

fix: 🐛 Fixes #35

fix: 🐛 Fixes #35 #76

Workflow file for this run

name: Go
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Test with Go ${{ matrix.go_version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
go_version: ["1.19", "1.20", "1.21"]
os: [ubuntu-20.04, macOS-latest]
steps:
- name: Set up Go ${{ matrix.go_version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go_version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Run Unit Tests
run: ./scripts/runUnitTests.sh