Skip to content

Fix python version in pre-commit autoupdate| #183

Fix python version in pre-commit autoupdate|

Fix python version in pre-commit autoupdate| #183

Workflow file for this run

name: Test and build
on: [push, pull_request, release]
jobs:
qa:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.9"
- uses: pre-commit/[email protected]
test:
needs: qa
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
python-version: [ "3.9" , "3.10"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: abatilo/[email protected]
with:
poetry-version: 1.2.2
- name: Install dependencies
run: poetry install
- name: Run tests
run: poetry run pytest
- name: Run codecov
if: success() && (matrix.os == 'ubuntu-latest' && matrix.python-version == 3.9)
uses: codecov/codecov-action@v3
docs_build:
needs: qa
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install Poetry
uses: abatilo/[email protected]
with:
poetry-version: 1.2.2
- name: Install dependencies
run: poetry install
- name: Set ipython kernel
run: poetry run python -m ipykernel install --user --name=pyrealm_python3
- name: Build docs using sphinx
run: |
cd docs
poetry run sphinx-build -W --keep-going source build