Skip to content

Commit

Permalink
ci: refresh
Browse files Browse the repository at this point in the history
  • Loading branch information
markokr committed Jul 11, 2022
1 parent 6551808 commit 92d5711
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
strategy:
matrix:
test:
- {PY: "3.8", TOXENV: "lint"}
- {PY: "3.10", TOXENV: "lint"}
steps:
- name: "Checkout"
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: "Setup Python ${{matrix.test.PY}}"
uses: actions/setup-python@v2
Expand All @@ -37,14 +37,14 @@ jobs:

database:
name: "Python ${{matrix.test.PY}} + PostgreSQL ${{matrix.test.PG}}"
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
strategy:
matrix:
test:
- {PY: "3.8", PG: "12", TOXENV: "py38"}
- {PY: "3.10", PG: "14", TOXENV: "py310"}
steps:
- name: "Checkout"
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: "Setup Python ${{matrix.test.PY}}"
uses: actions/setup-python@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:

- name: Checkout code
id: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: "Setup Python"
uses: actions/setup-python@v2
with:
python-version: "3.8"
python-version: "3.10"

- name: Build tarball
id: build
Expand Down

0 comments on commit 92d5711

Please sign in to comment.