Skip to content

Commit

Permalink
Actions v5
Browse files Browse the repository at this point in the history
  • Loading branch information
spirillen committed Mar 20, 2024
1 parent 2f1edca commit 1ff146e
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- dev-autosort-lists

jobs:
build:
sort:
runs-on: ubuntu-latest

permissions:
Expand All @@ -18,8 +18,6 @@ jobs:
steps:
- name: Checkout the repo
uses: actions/checkout@main
with:
ref: ${{ github.head_ref }}

- name: Setup Python 3.11
uses: actions/setup-python@v5
Expand All @@ -28,11 +26,11 @@ jobs:

- name: Install requirements
run: |
if [ -f requirements.txt ]; then python3.11 -m pip install --no-cache-dir -r requirements.txt; fi
pip install --no-cache-dir -r requirements.txt
- name: 'Sort the lists hierarchical'
run: |
sh "${{ github.workspace }}/tools/hierarchical_sort.sh"
bash "${{ github.workspace }}/tools/hierarchical_sort.sh"
- name: Git Status
run: git status
Expand Down

0 comments on commit 1ff146e

Please sign in to comment.