Skip to content

Commit

Permalink
Update ci-cd.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jabra- authored Dec 10, 2023
1 parent 38688f4 commit b1971ad
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: CI/CD

on:
push:
branches:
- workflow-cicd

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: Install Python3-dev
run: sudo apt-get install python3-dev

- name: Build teamserver
run: make ts-build

- name: Build client
run: make client-build

0 comments on commit b1971ad

Please sign in to comment.