Continuous Integration #738
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: Continuous Integration | |
on: | |
push: | |
pull_request: | |
branches: [ main ] | |
release: | |
types: [ published ] | |
schedule: | |
- cron: '25 2 * * *' | |
jobs: | |
test: | |
runs-on: ${{ matrix.runner }} | |
strategy: | |
matrix: | |
runner: ['ubuntu-latest'] | |
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12' ] | |
include: | |
- runner: 'ubuntu-20.04' | |
python-version: '3.6' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install pip dependencies | |
run: | | |
pip install --upgrade pip setuptools wheel coveralls | |
pip install --ignore-installed -e .[tests] | |
- name: Run tests without libyaml | |
run: | | |
USE_LIBYAML=False pytest testsuite | |
env: | |
COVERAGE_FILE: '.coverage_nolibyaml' | |
- name: Run tests with libyaml | |
run: | | |
USE_LIBYAML=True pytest testsuite | |
env: | |
COVERAGE_FILE: '.coverage_libyaml' | |
- name: Run coveralls | |
if: startsWith(matrix.python-version, '3.9') | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
COVERALLS_SERVICE_NAME: github | |
run: | | |
coverage combine .coverage_libyaml .coverage_nolibyaml | |
coveralls | |
deploy: | |
needs: test | |
if: github.event_name == 'release' | |
runs-on: ubuntu-latest | |
environment: | |
name: pypi | |
url: https://pypi.org/p/hepdata-validator | |
permissions: | |
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.9' | |
- name: Build PyPI package | |
run: | | |
pip install wheel | |
python setup.py sdist bdist_wheel | |
- name: Publish distribution to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 |