Skip to content

Commit

Permalink
Added github actions workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
ErnstRoell committed Jun 4, 2024
1 parent 763b90c commit c7530ac
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/create_manifold_release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Create release for dataset

on:
workflow_dispatch:

jobs:
run-python:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3

- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10.11"

- name: Install requirements
run: |
python -m pip install -r requirements.txt
python ./dataprocessing/process_manifolds.py
4 changes: 4 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
numpy
pandas
pydantic
fsspec

0 comments on commit c7530ac

Please sign in to comment.