mirror of
https://github.moeyy.xyz/https://github.com/TheAlgorithms/C.git
synced 2023-10-11 15:56:24 +08:00
22 lines
470 B
YAML
22 lines
470 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: Install requirements
|
|
run: sudo apt -qq install doxygen graphviz ninja-build
|
|
- name: configure
|
|
run: cmake -G Ninja -B ./build -S .
|
|
- name: build
|
|
run: cmake --build build -t doc
|