Skip to content

Commit

Permalink
! github jobs tryout
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleksei Rubashev committed Jul 23, 2024
1 parent 549dca4 commit 8dc9915
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python-dev-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:

- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f requirements-tests.txt ]; then pip install -r requirements-tests.txt; fi
Expand All @@ -61,13 +61,13 @@ jobs:
tox -e py
- name: Test with flake8
if: matrix.python-version == '3.10'
if: matrix.python-version == '3.12'
run: |
python -m pip install tox
tox -e flake8
- name: Build and Publish to TestPyPi
if: matrix.python-version == '3.10'
if: matrix.python-version == '3.12'
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_TEST_PASSWORD }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f requirements-tests.txt ]; then pip install -r requirements-tests.txt; fi
Expand Down

0 comments on commit 8dc9915

Please sign in to comment.