Skip to content
Open

Lab7 #17

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
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

36 changes: 35 additions & 1 deletion .github/workflows/run.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: 🚀 Run

on:
pull_request:
types: [opened]
push:
tags:
- '*'
workflow_dispatch:

jobs:
Expand All @@ -13,7 +18,36 @@ jobs:
with:
fetch-depth: 0

- name: Install Deps
run: |
python -m pip install --upgrade pip
pip install pytest

- name: 🚀 Run
shell: bash
run: |
python3 main.py
pytest

gen-doxygen:
name: 📝 Generate Doxygen
runs-on: ubuntu-latest
steps:
- name: 📥 Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Install Deps
run: |
sudo apt install -y doxygen

- name: Generate Doxygen
shell: bash
run: |
doxygen Doxyfile

- name: Upload
uses: actions/upload-artifact@v2
with:
name: doxygen
path: html
Loading