Skip to content

Commit

Permalink
fix: [workflows] fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
cvandeplas committed May 31, 2024
1 parent f664a8c commit 0a4f8d0
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/pycodestyle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,25 @@ name: Pycodestyle Lint

on:
push:
branches:
- main
- master
branches: [ "main" ]
pull_request:
branches: [ "main" ]

permissions:
contents: read

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

steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
Expand Down

0 comments on commit 0a4f8d0

Please sign in to comment.