Bump lxml from 4.6.3 to 4.9.1 #28
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: Python Tests | |
on: | |
push: | |
branches: [ master, develop ] # Run on pushes to master and develop branches | |
pull_request: | |
branches: [ master, develop ] # Run on pull requests to master and develop branches | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.9' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
sudo apt-get update | |
sudo apt-get install -y libxml2-dev libxslt-dev python3-dev exuberant-ctags | |
python -m venv .venv | |
source .venv/bin/activate | |
pip install -r requirements.txt | |
- name: Install dev dependencies | |
run: pip install -r requirements-dev.txt | |
- name: Run tests | |
run: make test |