edit README 4Ing-catalog #628
Workflow file for this run
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
on: push | |
name: Run tests | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Python 3.8 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.8' | |
- name: Update package index | |
run: sudo apt-get update | |
- name: Install xmllint | |
run: sudo apt-get install -y libxml2-utils | |
- name: Install requirements | |
run: pip install pytest | |
- name: Run tests | |
run: pytest |