Skip to content

refactor: clang-tidy fixups #3

refactor: clang-tidy fixups

refactor: clang-tidy fixups #3

Workflow file for this run

name: branch-build
permissions: read-all
on:
push:
branches-ignore:
- master
jobs:
branch-build:
runs-on: ubuntu-latest
steps:
- name: Install Dependencies
run: |
sudo apt update && sudo apt install -y gcc-12 g++-12 make ragel lemon cmake
- name: Checkout Repository
uses: actions/checkout@v3
- name: Configure CMake
run: CC=gcc-12 CXX=g++-12 cmake -B ${{github.workspace}}/build
- name: Build
run: cmake --build ${{github.workspace}}/build