Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Test run action (triggers warnings)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: ./
with:
path: example
Expand All @@ -21,7 +21,7 @@ jobs:
name: Test run action (valid)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: ./
with:
path: example_valid
Expand All @@ -30,7 +30,7 @@ jobs:
name: Test run action (valid with custom Flake8)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- run: pip install flake8==3.8.0
- uses: ./
with:
Expand All @@ -40,7 +40,7 @@ jobs:
name: Test run action (valid with Flake 3.8.0)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: ./
with:
path: example_valid
Expand All @@ -50,7 +50,7 @@ jobs:
name: Test run action (valid with Python 3.9)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: actions/setup-python@v5
with:
python-version: 3.9
Expand All @@ -62,7 +62,7 @@ jobs:
name: Test run action (plugins)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: ./
with:
plugins: flake8-bugbear
Expand All @@ -73,7 +73,7 @@ jobs:
name: Test run action (classes)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: ./
with:
plugins: flake8-bugbear
Expand All @@ -86,7 +86,7 @@ jobs:
name: Test run action (extra arguments)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: ./
with:
path: example_length
Expand All @@ -96,7 +96,7 @@ jobs:
name: Test run action (working dir)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: ./
with:
working_directory: example_valid
Expand All @@ -105,7 +105,7 @@ jobs:
name: Check for spelling errors
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: codespell-project/actions-codespell@master
with:
check_filenames: true
Expand Down
Loading