Skip to content

Commit

Permalink
ci/lint: test
Browse files Browse the repository at this point in the history
  • Loading branch information
raehik committed Feb 21, 2023
1 parent 4e53d00 commit 4aadeed
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/linting.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,19 @@ on:
- opened
- reopened

env:
os: ubuntu-latest
python-version: "3.10"

jobs:
various:
name: various (Black, pylint, pydocstyle)
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.10"]
runs-on: ${{ env.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
python-version: ${{ env.python-version }}
- run: pip install black pylint pydocstyle

# annotate each step with `if: always` to run all regardless
Expand Down

0 comments on commit 4aadeed

Please sign in to comment.