Default content-type to xml when in quirks mode #21
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
tags: [v*.*.*] | |
jobs: | |
build: | |
name: Test & Build | |
strategy: | |
matrix: | |
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] | |
runs-on: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # fetch all history for setuptools_scm to be able to read tags | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install python dependencies | |
run: | | |
pip install wheel build | |
pip install .[dev] | |
- name: Run tests | |
run: pytest | |
- name: Build python package | |
run: python -m build | |
- uses: actions/upload-artifact@v4 | |
if: matrix.python-version == '3.12' | |
with: | |
name: dist | |
path: dist | |
publish: | |
name: Publish to PyPI | |
needs: build | |
runs-on: [ubuntu-latest] | |
permissions: | |
id-token: write | |
if: github.event_name != 'pull_request' | |
steps: | |
- uses: actions/download-artifact@v4 | |
- name: Test Publish package | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
repository-url: https://test.pypi.org/legacy/ | |
- name: Publish package | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
if: startsWith(github.event.ref, 'refs/tags/v') |