Skip to content

Bumping up python versions #4

Bumping up python versions

Bumping up python versions #4

Workflow file for this run

{
"name": "CI",
"on": { "pull_request": null },
"jobs": {
"linux": {
"runs-on": "ubuntu-latest",
"strategy": {
"fail-fast": false,
"matrix": {
"python": [
"3.6",
"3.7",
"3.8",
"3.9",
],
},
},
"steps": [
{ "uses": "actions/checkout@v2" },
{
"uses": "actions/setup-python@v2",
"with": { "python-version": "${{ matrix.python }}"},
},
{ "run": "pip install tox" },
{ "run": "tox" },
],
},
},
}