Skip to content

Commit

Permalink
Add python-slugify to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
rsp4jack authored Jan 31, 2024
1 parent d60a8f9 commit dd1db06
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/check-all-loser-homework.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Install python-slugigy
run: |
pip install python-slugify[unidecode]
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_CXX_COMPILER=$cxx_compiler

Expand All @@ -54,6 +58,10 @@ jobs:
wget https://apt.llvm.org/llvm.sh
chmod u+x llvm.sh
echo | sudo ./llvm.sh 17
- name: Install python-slugigy
run: |
pip install python-slugify[unidecode]
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_CXX_COMPILER=$cxx_compiler
Expand All @@ -69,6 +77,10 @@ jobs:

steps:
- uses: actions/checkout@v4

- name: Install python-slugigy
run: |
pip install python-slugify[unidecode]
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/check-changed-loser-homework.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@ jobs:
echo $find_command
eval "$find_command"
find ${{ env.src_path }} -type f \( -name "*.cpp" -o -name "*.cxx" -o -name "*.cc" \)
- name: Install python-slugigy
run: |
pip install python-slugify[unidecode]
- name: Configure CMake
if: needs.get-changed-files.outputs.any_changed == 'true'
Expand Down Expand Up @@ -117,6 +121,10 @@ jobs:
wget https://apt.llvm.org/llvm.sh
chmod u+x llvm.sh
echo | sudo ./llvm.sh 17
- name: Install python-slugigy
run: |
pip install python-slugify[unidecode]
- name: Configure CMake
if: needs.get-changed-files.outputs.any_changed == 'true'
Expand Down Expand Up @@ -159,6 +167,10 @@ jobs:
}
}
- name: Install python-slugigy
run: |
pip install python-slugify[unidecode]
- name: Configure CMake
if: needs.get-changed-files.outputs.any_changed == 'true'
run: cmake -B ${{github.workspace}}/build
Expand Down

0 comments on commit dd1db06

Please sign in to comment.