Update README.md #161
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: Check requirements | |
on: [push, pull_request] | |
jobs: | |
check_requirements: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [">=3.10.7"] | |
steps: | |
- name: Install required | |
uses: sudo apt-get install libxml2-dev libxslt-dev python-dev lib32z1-dev | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Python environment | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Upgrade pip | |
run: pip install --upgrade pip | |
- name: Install dependencies | |
run: pip install -r requirements.txt | |
- name: Check for conflicting libraries | |
run: pip check | |