Skip to content

build/install improvements #1

build/install improvements

build/install improvements #1

Workflow file for this run

name: build

Check failure on line 1 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yml

Invalid workflow file

you may only define one of `branches` and `branches-ignore` for a single event
on:
push:
branches:
- '*' # replace with branch if you only want a specific branch
branches-ignore:
- client-rewrite
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