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

Merge pull request #4 from MarnieGrenat/Create_Client_Callback #13

Merge pull request #4 from MarnieGrenat/Create_Client_Callback

Merge pull request #4 from MarnieGrenat/Create_Client_Callback #13

Workflow file for this run

# This workflow will build and test the Go project
name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Build Server
run: go build -v ./src/Server/Server.go
- name: Build Client
run: go build -v ./src/Client/Client.go
- name: Test
run: go test -v ./...