diff --git a/.github/workflows/data-sorting.yml b/.github/workflows/data-sorting.yml new file mode 100644 index 0000000..2df9598 --- /dev/null +++ b/.github/workflows/data-sorting.yml @@ -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 diff --git a/src/sort_data.py b/src/sort_data.py new file mode 100644 index 0000000..56b49aa --- /dev/null +++ b/src/sort_data.py @@ -0,0 +1 @@ +print("Test sort workflow")