Search dataset through tags until valid url #22
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: Run tests | |
on: [push] | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: '3.8.6' | |
- name: Install pytest | |
run: pip install pytest | |
- name: Install pactus | |
run: pip install . | |
- name: Run tests | |
run: python -m pytest |