Skip to content

Commit

Permalink
bump action versions, add 3.11 to matrix (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshKarpel committed Mar 28, 2023
1 parent fee7cf6 commit 9f7f3d7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.3.0
- name: Set up Python 3.x
uses: actions/setup-python@v2
uses: actions/setup-python@v4.5.0
with:
python-version: "3.x"
- name: Install build dependencies
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
fail-fast: false
matrix:
platform: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]

runs-on: ${{ matrix.platform }}

Expand All @@ -21,9 +21,9 @@ jobs:
PYTHON_VERSION: ${{ matrix.python-version }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.3.0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4.5.0
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -32,7 +32,7 @@ jobs:
pip install .[tests]
- name: Test with pytest
run: pytest --cov --cov-report=xml tests/
- uses: codecov/codecov-action@v1
- uses: codecov/codecov-action@v3.1.1
with:
env_vars: PLATFORM,PYTHON_VERSION
fail_ci_if_error: false

0 comments on commit 9f7f3d7

Please sign in to comment.