Use Ubuntu 20.04 runner for tests
GitHub has deprecated 18.04, so we can't continue running tests on that old distribution. Unfortunately, we can't switch to the latest 22.04 since GitHub doesn't package anything older than Python 3.7 for that runner. And unfortunately the oldest version in 20.04 is Python 3.5, so we have to remove the test runs for Python 3.4.
This commit is contained in:
@@ -4,11 +4,10 @@ on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-18.04
|
||||
runs-on: ubuntu-20.04
|
||||
strategy:
|
||||
matrix:
|
||||
python-version:
|
||||
- 3.4
|
||||
- 3.5
|
||||
- 3.6
|
||||
- 3.7
|
||||
|
||||
Reference in New Issue
Block a user