Skip to content

client-build

client-build #7

Workflow file for this run

name: build
on:
push:
branches:
- '*' # replace with branch if you only want a specific branch
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
- name: Install Qt
uses: jurplel/install-qt-action@v3
- name: Build teamserver
run: make ts-build
- name: Build client
run: make client-build