Skip to content

update readthedocs configuration #4

update readthedocs configuration

update readthedocs configuration #4

Workflow file for this run

name: ci/cd
on: [push, pull_request]
env:
lowest_python_version: 3.11
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ env.lowest_python_version }}
- run: pip install -e ./[dev]
- run: pre-commit run -a
test:
needs: lint
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11', '3.12']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- run: pip install -e ./[dev]
- run: pytest
- uses: codecov/codecov-action@v2
with:
fail_ci_if_error: true
verbose: true
publish:
needs: test
runs-on: ubuntu-latest
if: github.ref_type == 'tag'
permissions:
id-token: write # IMPORTANT: mandatory for trusted publishing
environment:
name: pypi
url: https://pypi.org/project/aioftp
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ env.lowest_python_version }}
- run: python -m pip install build
- run: python -m build
- uses: pypa/gh-action-pypi-publish@release/v1