Skip to content

Commit

Permalink
updated pylint workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
iprafols committed Oct 3, 2023
1 parent a7d4c5a commit e7ad395
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,17 @@ jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]


steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v1
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ["3.9", "3.10", "3.11"]
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt-get -y install libbz2-dev
Expand Down

0 comments on commit e7ad395

Please sign in to comment.