Skip to content

fix: npub

fix: npub #18

Workflow file for this run

name: C++ CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Ninja & LLD
run: |
sudo apt-get update
sudo apt-get install ninja-build lld
- name: Build
run: |
cmake -S . -B build --preset=github
ninja -v -C ./build