added release
Some checks failed
Go / build-test-publish (1.23.4) (push) Successful in 45s
Release / build-test (1.23.4) (release) Failing after 8s

This commit is contained in:
Denys Seredenko
2025-01-15 12:04:52 +01:00
parent afffe6e9e5
commit 4d23d6041d
2 changed files with 32 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
name: Go
on: [push]
env:
VERSION: v0.0.0
jobs:
build-test-publish:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.23.4']
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Install dependencies
run: go get .
- name: Build
run: go build -o ./build/ssh-hub
- name: Test
run: go test