Skip to content

πŸ› Fixed #330 (#333) #1465

πŸ› Fixed #330 (#333)

πŸ› Fixed #330 (#333) #1465

Workflow file for this run

name: Testing
on:
push:
branches: [ main, dev, feature/* ]
pull_request:
branches: [ main ]
jobs:
test:
strategy:
max-parallel: 6
matrix:
go-version: [1.22, 1.23]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- name: Install Go on the Container
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Test the Go code
run: go test -v ./...