telegrambot / .github /workflows /check_requirements.yml
Captain Ezio
v 2.1.2
3c05ff4
raw
history blame
551 Bytes
name: Check requirements
on: [push, pull_request]
jobs:
check_requirements:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [">=3.9"]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python environment
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install -r requirements.txt
- name: Check for conflicting libraries
run: pip check