Skip to content

Commit

Permalink
Fix git conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss committed Aug 25, 2023
1 parent 52495cf commit b54123d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,15 @@ jobs:
- uses: actions/checkout@v3
- run: pip install --user ruff
- run: ruff --format=github --select="ASYNC,E,F,PLC,PLE,UP,W,YTT"
--ignore="PLC1901,S101,UP031" --target-version=py38 .
--ignore="E721,PLC1901,S101,UP031" --target-version=py38 .
Tests:
needs: Lint_Python # Lint_Python takes ~5 seconds, so wait for it to pass before running the full matrix of tests.
strategy:
fail-fast: false
max-parallel: 15
matrix:
node: [16.x, 18.x, 20.x]
python: ["3.8", "3.11", "3.12-dev"]
python: ["3.8", "3.11", "3.12"]
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -35,6 +36,7 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
allow-prereleases: true
env:
PYTHON_VERSION: ${{ matrix.python }} # Why do this?
- name: Install Dependencies
Expand Down

0 comments on commit b54123d

Please sign in to comment.