Skip to content

Merge pull request #12 from European-XFEL/docs/readme #39

Merge pull request #12 from European-XFEL/docs/readme

Merge pull request #12 from European-XFEL/docs/readme #39

Workflow file for this run

name: Tests
on:
push:
branches: [ master ]
pull_request:
release:
types:
- published
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-${{ matrix.python-version }}-pip-${{ hashFiles('pyproject.toml') }} }}
- name: Install dependencies
run: |
python3 -m pip install -e .[extra,test]
- name: Test with pytest
run: |
python3 -m pytest --cov=extra_proposal --cov-report=xml .
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
publish:
runs-on: ubuntu-latest
if: ${{ startsWith(github.ref, 'refs/tags/') }}
needs: tests
permissions:
id-token: write # OIDC for uploading to PyPI
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Build packages
run: |
python3 -m pip install build
python3 -m build
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1