Skip to content

[refactor] Apply emplace semantics on vectors #67

[refactor] Apply emplace semantics on vectors

[refactor] Apply emplace semantics on vectors #67

Workflow file for this run

name: Linux
on: [push]
env:
BUILD_TYPE: Release
jobs:
build-ubuntu:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install dependencies
run: sudo apt update && sudo apt install -y make cmake gcc qt6-base-dev libqt6svg6 libqt6svg6-dev catch2
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build project
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
- name: Test
run: cmake --build build --target test