Skip to content

Bump pytest from 7.2.0 to 8.1.1 #56

Bump pytest from 7.2.0 to 8.1.1

Bump pytest from 7.2.0 to 8.1.1 #56

Workflow file for this run

name: Linters
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip wheel
pip install -r requirements-test.txt -e .
- name: Run Tests
run: |
pytest --cov=aptly_api
coverage report -m
coverage lcov
- name: Run Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: coverage.lcov
- name: Run Flake8
run: |
flake8 --max-line-length=120 aptly_api setup.py
- name: Run mypy
run: |
mypy --install-types --non-interactive \
--ignore-missing-imports --follow-imports=skip --disallow-untyped-calls \
--disallow-untyped-defs -p aptly_api