Skip to content

Commit c7530ac

Browse files
committed
Added github actions workflow.
1 parent 763b90c commit c7530ac

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Create release for dataset
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
run-python:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout Code
11+
uses: actions/checkout@v3
12+
13+
- name: Setup Python
14+
uses: actions/setup-python@v4
15+
with:
16+
python-version: "3.10.11"
17+
18+
- name: Install requirements
19+
run: |
20+
python -m pip install -r requirements.txt
21+
python ./dataprocessing/process_manifolds.py

requirements.txt

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
numpy
2+
pandas
3+
pydantic
4+
fsspec

0 commit comments

Comments
 (0)