Skip to content

Delete ByteCode_key.pem #4

Delete ByteCode_key.pem

Delete ByteCode_key.pem #4

Workflow file for this run

name: CI
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
build_type: [Release, Debug]
steps:
- uses: actions/checkout@v4
- name: Configure CMake
run: cmake -B build -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
- name: Build
run: cmake --build build
- name: Run Tests
working-directory: build
run: ctest --output-on-failure
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check formatting
run: |
find src include -name '*.cpp' -o -name '*.h' | head -5 | xargs -I {} sh -c 'echo "Checking {}"'