Skip to content
This repository was archived by the owner on Nov 17, 2024. It is now read-only.

Include server compatibility info in README #14

Include server compatibility info in README

Include server compatibility info in README #14

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "dev" ]
pull_request:
branches: [ "dev" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23'
- name: Build
run: go build -v ./...
- name: Upload binary
uses: actions/[email protected]
with:
name: padclient
path: ./padclient
#- name: Test
# run: go test -v ./...