Skip to content

Fix the rendering issue from internal github changes. #30

Fix the rendering issue from internal github changes.

Fix the rendering issue from internal github changes. #30

name: mac-build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 5
matrix:
python-version: ["3.7.x", "3.8.x", "3.9.x", "3.10.x", "3.11.x"]
os: [macos-latest]
steps:
- uses: actions/checkout@v3
- name: setup python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: install dependencies
run: |
python3 -m pip install --upgrade pip pytest pytest-asyncio coverage aiofiles cryptography
- name: test with pytest
run: |
coverage run --source aiootp -m pytest -vv tests/test_aiootp.py
coverage report