Skip to content

chore(deps): update dependency importlib-metadata to v8.2.0 #266

chore(deps): update dependency importlib-metadata to v8.2.0

chore(deps): update dependency importlib-metadata to v8.2.0 #266

Workflow file for this run

name: Tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Setup timezone
uses: zcong1993/setup-timezone@master
with:
timezone: UTC
- name: Set up Python
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: |
python3 -m pip install --upgrade pip
pip3 install -r requirements.txt
pip3 install -e .
- name: Test with pytest
run: |
pytest -vvv
- name: Check coverage
run: |
pytest --cov=cli --cov=pythonanywhere --cov=scripts --cov-fail-under=65