-
Notifications
You must be signed in to change notification settings - Fork 7
74 lines (68 loc) · 1.93 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
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' ]
include:
- runner: 'ubuntu-20.04'
python-version: '3.6'
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
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@v3
- name: Set up Python 3.9
uses: actions/setup-python@v4
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