Skip to content

Commit

Permalink
test: remove deprecated Node.js and Python (nodejs#2868)
Browse files Browse the repository at this point in the history
* test: remove deprecated node.js and python

Removed Node.js v14.x and Python v3.7. Also added Node.js v20.x.

* Update .github/workflows/tests.yml

Co-authored-by: Christian Clauss <cclauss@me.com>

---------

Co-authored-by: Christian Clauss <cclauss@me.com>
  • Loading branch information
StefanStojanovic and cclauss committed Jun 13, 2023
1 parent a8ff7ee commit 3119ce6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ jobs:
steps:
- uses: actions/checkout@v3
- run: pip install --user ruff
- run: ruff --format=github --select="E,F,PLC,PLE,UP,W,YTT" --ignore="PLC1901,S101,UP031" --target-version=py37 .
- run: ruff --format=github --select="E,F,PLC,PLE,UP,W,YTT" --ignore="PLC1901,S101,UP031" --target-version=py38 .
Tests:
strategy:
fail-fast: false
max-parallel: 15
matrix:
node: [14.x, 16.x, 18.x]
python: ["3.7", "3.9", "3.11", "3.12-dev"]
node: [16.x, 18.x, 20.x]
python: ["3.8", "3.11", "3.12-dev"]
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
Expand Down

0 comments on commit 3119ce6

Please sign in to comment.