Skip to content

Commit

Permalink
Workflows: Run pylint on a matrix of OSes and versions
Browse files Browse the repository at this point in the history
  • Loading branch information
loathingKernel committed Jan 21, 2024
1 parent d9bfdb9 commit 17246f1
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,17 @@ on:

jobs:
pylint:
runs-on: ubuntu-latest
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
version: [3.9, 3.10, 3.11, 3.12]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
python-version: ${{ matris.version }}
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
Expand Down

0 comments on commit 17246f1

Please sign in to comment.