telegrambot / .github /workflows /check_requirements.yml
dependabot[bot]
Bump actions/checkout from 2 to 3
41cdf63
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@v3
- name: Set up Python environment
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install -r requirements.txt
- name: Check for conflicting libraries
run: pip check