Skip to content

chore: deps up

chore: deps up #108

Workflow file for this run

name: Go
on:
push:
branches: [ "master" ]
tags: [ "v*" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
# if:
steps:
- name: Load repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.23"
- name: Test
run: go test ./...
- name: Build client
run: make -f Makefile.client
- name: Build server
run: make -f Makefile.server
- name: Upload release binaries
uses: alexellis/[email protected]
if: startsWith(github.ref, 'refs/tags/v')
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with:
asset_paths: '["./build/*"]'