Skip to content

Commit

Permalink
Fixed various CI settings
Browse files Browse the repository at this point in the history
Added py3.12
Bump py version for tests/linting
  • Loading branch information
scheibling committed May 9, 2024
1 parent 89fcd53 commit 4bd4a79
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 18 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/deploy_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,20 @@ name: "Release Tests"
on:
release:
types: [created]
workflow_dispatch:

jobs:
testing:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
os:
- "ubuntu-latest"
- "macOS-latest"
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/dev_testing.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
name: "Development Tests"
on:
push:
paths-ignore:
- "docs/**"
- "*.md"
push:
paths-ignore:
- "docs/**"
- "*.md"
workflow_dispatch:

jobs:
testing:
Expand All @@ -12,9 +13,9 @@ jobs:
fail-fast: false
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"

steps:
- uses: actions/checkout@v3
Expand Down
23 changes: 12 additions & 11 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
name: "Pylint"
on:
push:
paths-ignore:
- "docs/**"
- "*.md"
- "tests/**"
pull_request:
paths-ignore:
- "docs/**"
- "*.md"
- "tests/**"
push:
paths-ignore:
- "docs/**"
- "*.md"
- "tests/**"
pull_request:
paths-ignore:
- "docs/**"
- "*.md"
- "tests/**"

jobs:
linting:
runs-on: "ubuntu-latest"
Expand All @@ -19,7 +20,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
python-version: "3.11"

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
python-version: '3.11'

- name: Install dependencies
run: |
Expand Down

0 comments on commit 4bd4a79

Please sign in to comment.