✨ Added the Issue Archiving API #1507
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.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 ./... |