Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/create_doxy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Generate documentation with doxygen

on:
push:
tags:
- 'v*'

jobs:
doxygen:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Install Doxygen
run: sudo apt-get install doxygen

- name: Generate documentation
run: doxygen Doxyfile

- name: Save generated documentation
uses: actions/upload-artifact@v2
with:
name: documentation
path: html
22 changes: 22 additions & 0 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Run unittests for every commit

on:
pull_request:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: '3.x'

- name: Run tests
run: python -m unittest test_find.py
Loading