💚 Removes mutliple go versions in build
Some checks failed
Gitea Build Action / build (push) Failing after 45s

This commit is contained in:
Daniel Svitan
2025-05-27 20:43:07 +02:00
parent 6c1e6f2667
commit 946ee1cd31

View File

@@ -5,16 +5,12 @@ on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ "1.21.x", "1.22.x", "1.23.x", "1.24.x" ]
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
- name: Setup Go 1.24.x
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
go-version: "1.24.x"
- name: Display Go version
run: go version
- name: "[server] Install dependencies"