Skip to content

ci: replace stale workflows with a single build check #43

ci: replace stale workflows with a single build check

ci: replace stale workflows with a single build check #43

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends \
cmake \
libboost-program-options-dev \
libboost-date-time-dev \
libboost-iostreams-dev \
libssl-dev
- name: Configure
run: cmake -B build -DCMAKE_BUILD_TYPE=Release
- name: Build
run: cmake --build build -j$(nproc)