Skip to content

Commit

Permalink
Merge pull request #45 from OpenDataServices/olderubuntu
Browse files Browse the repository at this point in the history
github actions: Use older Ubuntu so 3.6 works
  • Loading branch information
odscjames committed Jan 4, 2023
2 parents 8a25dc6 + 8a52b80 commit 445f7cb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
# Need to use an older Ubuntu so Python 3.6 is available
os: [macos-latest, windows-latest, ubuntu-20.04]
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10']
myst-parser-version: [ '<0.18.0', '>=0.18.0' ]
exclude:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ on: [push, pull_request]

jobs:
lint:
runs-on: ubuntu-latest
# Need to use an older Ubuntu so Python 3.6 is available
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Setup python
Expand Down

0 comments on commit 445f7cb

Please sign in to comment.