✨ Support the possibility to add multiobject on the issue u… #1228
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Testing | |
on: | |
push: | |
branches: [ main, dev, feature/* ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test: | |
strategy: | |
max-parallel: 6 | |
matrix: | |
go-version: [1.17, 1.18, 1.19] | |
platform: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Go on the Container | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Test the Go code | |
run: go test -v ./... |