pihelper-c/.forgejo/workflows/test.yml
William Brawner 2b322cbef2
Some checks failed
Build / build-and-test (pull_request) Failing after 10s
Add Forgejo workflow
2024-08-14 19:10:56 -06:00

21 lines
509 B
YAML

name: Build
on: pull_request
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Dependencies
run: |
sudo apt install cmake \
make \
gcc \
g++ \
autoconf \
libtool \
libcurl4-openssl-dev \
libssl-dev \
libjson-c-dev
- name: Build
run: cmake -DPIHELPER_EXECUTABLE=BOOL:ON -B build