mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2026-01-15 19:49:59 +01:00
21 lines
373 B
YAML
21 lines
373 B
YAML
name: Build edge .deb package
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
#! only for test, remove before MR !
|
|
- doxygen
|
|
|
|
jobs:
|
|
doxygen:
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: 'recurive'
|
|
- name: Setup and run doxygen
|
|
run: |
|
|
sudo apt install doxygen -y
|
|
doxygen Doxyfile
|