feat: add go runner to CI
Publish Modpack Archive / Prepare Go environment (1.19) (push) Successful in 38s
Publish Modpack Archive / Prepare Go environment (1.20) (push) Successful in 14s
Publish Modpack Archive / Prepare Go environment (1.21.x) (push) Successful in 12s

This commit is contained in:
2026-04-30 21:39:56 -04:00
parent 4edfa12d6a
commit 3026126b22
2 changed files with 17 additions and 19 deletions
+17
View File
@@ -0,0 +1,17 @@
name: Publish Modpack Archive
run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
on: [push]
jobs:
Prepare Go environment:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.19", "1.20", "1.21.x"]
steps:
- uses: actions/checkout@v6
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Display Go version
run: go version