Merge pull request #47 from athos-ribeiro/install-requires #59
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Integration | |
on: [push, pull_request] | |
jobs: | |
tox: | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 60 | |
steps: | |
- name: Install dependencies | |
run: | | |
sudo apt-get -qy update | |
sudo DEBIAN_FRONTEND=noninteractive apt-get -qy install tox | |
- name: Git checkout | |
uses: actions/checkout@v2 | |
- name: Run tox | |
run: tox |