Skip to content

Commit

Permalink
add data-sorting.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoKle committed Sep 29, 2024
1 parent f6da5bc commit 0cb3393
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/data-sorting.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: data sorter
run-name: Sorting data on branch ${{github.ref}}
on:
push:
branches:
- "!main"
- "!production"
- "*"

permissions: write-all
jobs:
sort-data:
runs-on: ubuntu-latest
steps:
- name: checkout repo content
uses: actions/checkout@v2

- name: setup python
uses: actions/setup-python@v4
with:
python-version: "3.11"

- name: sort data
run: python src/sort_data.py
1 change: 1 addition & 0 deletions src/sort_data.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
print("Test sort workflow")

0 comments on commit 0cb3393

Please sign in to comment.