Skip to content

Stage Commit

Stage Commit #8

Workflow file for this run

name: SocketCluster CI
on:
push:
branches: [ stage, prod ]
pull_request:
branches: [ stage, prod ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y build-essential cmake
- name: Configure CMake
run: cmake -S . -B build
- name: Build
run: cmake --build build
- name: Run tests
run: ./build/bin/tests