TheAlgorithms-C/.github/workflows/gh-pages.yml

20 lines
372 B
YAML
Raw Normal View History

2020-05-26 07:33:27 +08:00
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