Skip to content
This repository has been archived by the owner on Mar 15, 2022. It is now read-only.

Commit

Permalink
Add Python 3.7 to test workflow (#406)
Browse files Browse the repository at this point in the history
* Add python3.7

* add another

* lint

* Update ci.yml

* Update ci.yml

* Update ci.yml

Co-authored-by: Nicholas Rubin <nickrubin@google.com>
  • Loading branch information
vtomole and ncrubin authored May 28, 2020
1 parent 57558da commit d2f5a87
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
- name: Doc check
run: check/doctest -q
pytest:
name: Pytest Ubuntu
name: Pytest Ubuntu Python 3.6
runs-on: ubuntu-16.04
steps:
- uses: actions/checkout@v1
Expand All @@ -97,6 +97,22 @@ jobs:
git config --global user.name ${GITHUB_ACTOR}
- name: Pytest check
run: check/pytest --actually-quiet
pytest37:
name: Pytest Ubuntu Python 3.7
runs-on: ubuntu-16.04
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
with:
python-version: '3.7'
architecture: 'x64'
- name: Install requirements
run: |
pip install -r requirements.txt
pip install -r dev_tools/conf/pip-list-dev-tools.txt
git config --global user.name ${GITHUB_ACTOR}
- name: Pytest check
run: check/pytest --actually-quiet
coverage:
name: Coverage check
runs-on: ubuntu-16.04
Expand Down

0 comments on commit d2f5a87

Please sign in to comment.