Skip to content

Commit

Permalink
Update the validation GH Action
Browse files Browse the repository at this point in the history
ubuntu-20.04 is required for py36 now.
  • Loading branch information
dmtucker committed Dec 11, 2022
1 parent cf649b9 commit c0f1bb3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ name: Validation
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: python -m pip install --upgrade tox-gh-actions
Expand Down

0 comments on commit c0f1bb3

Please sign in to comment.