Skip to content

style: format

style: format #78

Workflow file for this run

name: Pikiwidb
on:
push:
pull_request:
branches: [ "unstable" ]
jobs:
build_on_macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: |
sh build.sh
build_on_ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: |
mkdir build && cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
make -j $(nproc)
- name: Check Format
working-directory: ${{ github.workspace }}/build
run: make check-format