ci: update go version
Some checks are pending
Go / build (push) Waiting to run

This commit is contained in:
raf 2025-02-09 11:45:04 +03:00
parent 6e73121834
commit f4ad0b5640
No known key found for this signature in database
GPG key ID: EED98D11B85A2819

View file

@ -2,12 +2,11 @@ name: Go
on:
push:
branches: [ "v2" ]
branches: ["v2"]
pull_request:
branches: [ "v2" ]
branches: ["v2"]
jobs:
build:
runs-on: ubuntu-latest
steps:
@ -16,10 +15,10 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
go-version: "1.23"
- name: Build
run: go build -v ./.
run: go build -v ./..
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3.1.3