Skip to content

debug

debug #17

Workflow file for this run

name: tests
on:
push:
branches:
- "**"
tags:
- "!**"
workflow_call:
env:
POETRY_VERSION: 1.8
jobs:
testing:
runs-on: ubuntu-24.04
strategy:
matrix:
PYTHON_VERSION: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: Set up Python ${{matrix.PYTHON_VERSION}}
uses: actions/setup-python@v1
with:
python-version: ${{matrix.PYTHON_VERSION}}
- name: Get full Python version
id: full-python-version
shell: bash
run: echo ::set-output name=version::$(python -c "import sys; print('-'.join(str(v) for v in sys.version_info))")
- name: Install poetry
shell: bash
run: |
python -m pip install --upgrade pip
pip install poetry==${{env.POETRY_VERSION}}
- name: Configure poetry
shell: bash
run: poetry config virtualenvs.in-project true
- name: Set up cache
uses: actions/cache@v4
id: cache
with:
path: .venv
key: venv-${{ runner.os }}-${{ steps.full-python-version.outputs.version }}-${{ hashFiles('**/poetry.lock') }}
- name: Ensure cache is healthy
if: steps.cache.outputs.cache-hit == 'true'
shell: bash
run: poetry run pip --version >/dev/null 2>&1 || rm -rf .venv
- name: Check that the lock file is up to date
shell: bash
run: |
poetry lock --check
- name: Install deps
shell: bash
run: |
poetry install
- name: Style checking
shell: bash
run: |
poetry run ruff format --check pybwa tests
- name: Run lint
shell: bash
run: |
poetry run ruff check pybwa tests
- name: Run mypy
shell: bash
run: |
poetry run mypy pybwa tests --config=pyproject.toml
- name: Run pytest
shell: bash
run: |
poetry run python -m pytest --cov=pybwa --cov-report=xml --cov-branch
- name: Run docs
shell: bash
run: |
set -euo pipefail
cd docs
poetry run make html
- name: Upload code coverage
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
# FIXME: remove me
build-sdist:
name: build source distribution
needs: testing
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true
- uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install poetry
run: |
python -m pip install --upgrade pip
python -m pip install poetry==${{env.POETRY_VERSION}}
- name: Configure poetry
shell: bash
run: poetry config virtualenvs.in-project true
- name: Install dependencies
run: poetry install --no-interaction --no-root --without=dev
- name: Install project
run: poetry install --no-interaction --without=dev
- name: Build package
run: poetry build --format=sdist
- name: Print contents
run: tar -tf dist/*.tar.gz
# - uses: actions/upload-artifact@v4
# with:
# name: pybwa-sdist
# path: dist/*.tar.gz