Use cmake's Doxygen integration, only generate docs for public API #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linux CI | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build the test image | |
run: docker build -t popt -f ci/Dockerfile . | |
- name: Run the test suite | |
run: docker run -t popt |