Skip to content

Commit

Permalink
install missing tools
Browse files Browse the repository at this point in the history
  • Loading branch information
vpoulailleau committed Dec 4, 2020
1 parent 93502bd commit 9211708
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- uses: actions/setup-python@v2
with:
python-version: '3.9'

- name: Install tox and poetry
run: |
sudo apt-get update
sudo apt-get install tox
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python3 -
- name: Run tox
run: tox

0 comments on commit 9211708

Please sign in to comment.