Skip to content

Commit

Permalink
fix yaml 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Knio committed Nov 5, 2023
1 parent ad4f3da commit 5279624
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -47,13 +47,13 @@ jobs:
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=80 --statistics
- name: "Build and test (Old)"
if: ${{ matrix.python != "3.12" }}
if: ${{ matrix.python != '3.12' }}
run: |
python setup/setup.py sdist --formats=zip
pip install dist/dominate*.zip
pytest
- name: "Build and test (Python 3.12+)"
if: ${{ matrix.python == "3.12" }}
if: ${{ matrix.python == '3.12' }}
run: |
# lolz theres still no correct way to make a python package
false
Expand Down

0 comments on commit 5279624

Please sign in to comment.