Skip to content

Commit

Permalink
debug: gh workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
tanbro committed Apr 8, 2024
1 parent d5df707 commit 97ee244
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: Python package
name: workflow

on:
push:
Expand All @@ -28,7 +28,7 @@ jobs:
fi
echo "version=${PEP440_VERSION}" | tee -a $GITHUB_OUTPUT
check:
check-mkdocs_gh_dploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -39,17 +39,17 @@ jobs:
cache: pip # caching pip dependencies
- name: Install project and dependent tools
run: |
pip install -r requirements.txt
python3 -m pip install -r requirements.txt
- name: Check with ruff
run: |
ruff check .
python3 -m ruff check .
- name: Update docs
run: |
mkdocs gh-deploy
python3 -m mkdocs gh-deploy
build:
runs-on: ubuntu-latest
needs: [get-version-pep440, check]
needs: [get-version-pep440, check-mkdocs_gh_dploy]
if: needs.get-version-pep440.outputs.version != ''
steps:
- name: Checkout
Expand Down

0 comments on commit 97ee244

Please sign in to comment.