Skip to content

Commit

Permalink
Added github actions to generate excel
Browse files Browse the repository at this point in the history
  • Loading branch information
schuur committed Sep 30, 2024
1 parent a48345e commit 54f16aa
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: generate docs
on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: install dependencies
run: pip install -r tools/requirements.txt
- name: run script
run: python tools/generate-excel.py

0 comments on commit 54f16aa

Please sign in to comment.