Skip to content

Commit

Permalink
Merge pull request #210 from tayler6000/feature/increase_tests
Browse files Browse the repository at this point in the history
Updated workflows to use newest versions of Python
  • Loading branch information
tayler6000 authored Jan 11, 2024
2 parents 8e6d2a2 + 286c24c commit 5f03d54
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 15 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/black.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
# This workflow will install Python dependencies, run tests and lint
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: Check Black

on:
Expand All @@ -16,7 +13,7 @@ jobs:
strategy:
matrix:
python-version:
- "3.8"
- "3.12"

steps:
- uses: actions/[email protected]
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/flake8.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
# This workflow will install Python dependencies, run tests and lint
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: Check flake8

on:
Expand All @@ -16,7 +13,7 @@ jobs:
strategy:
matrix:
python-version:
- "3.8"
- "3.12"

steps:
- uses: actions/[email protected]
Expand Down
10 changes: 3 additions & 7 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# This workflow will install Python dependencies, run tests and lint
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: Check pytest
name: Run pytest

on:
push:
Expand All @@ -11,12 +8,11 @@ on:
pull_request:

jobs:
check-pytest:
run-pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.8"
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/[email protected]
Expand Down

0 comments on commit 5f03d54

Please sign in to comment.