TheAlgorithms-C/.github/workflows/gh-pages.yml
2020-05-25 19:33:27 -04:00

20 lines
372 B
YAML

name: Doxygen CI
on: [push]
# push:
# branches: [ master ]
# pull_request:
# branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
with:
submodules: true
- name: configure
run: cmake -G Ninja -B ./build -S .
- name: build
run: cmake --build build -t doc