Skip to content

Bump qs to 6.14.1

Bump qs to 6.14.1 #14

Workflow file for this run

name: C++
on:
push:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-and-test:
name: Build & Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install build tools
run: sudo apt-get update && sudo apt-get install -y build-essential
- name: Build C++ engine
run: make -C cpp
- name: Build C++ tests
run: make -C cpp tests
- name: Run C++ tests
run: make -C cpp test_all