Skip to content

Accept file path or file object #78

Accept file path or file object

Accept file path or file object #78

Workflow file for this run

name: tests
on:
push:
branches:
- '*'
pull_request:
branches:
- master
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- run: pip install -r requirements-dev.txt
- name: Link with flake8
run: flake8 aioapns
- name: Run mypy
run: mypy aioapns
- name: Run black
run: black --check .