Skip to content

build, unit tests, and linting #3

build, unit tests, and linting

build, unit tests, and linting #3

Workflow file for this run

name: Build Client
on:
push:
branches:
- dev
pull_request:
jobs:
windows:
name: Build on Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Create build dir
run: mkdir -p build
- name: Run CMake
run: cd build && cmake ..
- name: Build
run: ls && cd build && make client
linux:
name: Build on Linux (Ubuntu)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Create build dir
run: mkdir -p build
- name: Run CMake
run: cd build && cmake ..
- name: Build
run: cd build && make client