-
Notifications
You must be signed in to change notification settings - Fork 3
75 lines (60 loc) · 2.1 KB
/
Copy pathmain.yml
File metadata and controls
75 lines (60 loc) · 2.1 KB
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
75
# This workflow will install Python dependencies, run tests, build package and publish on pipy
name: ci-cd
# WIll run on push commands
on: [push]
permissions:
contents: write
jobs:
ci:
# Set up operating system
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", ] #TODO add 3.12 when supported by all dependencies
# Define job steps
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "16"
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Check-out repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test with pytest
run: |
pytest --cov --cov-report=xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
- name: Build package
run: python setup.py sdist bdist_wheel
- name: pypi-publish
# You may pin to the exact commit or the version.
# uses: pypa/gh-action-pypi-publish@717ba43cfbb0387f6ce311b169a825772f54d295
# we only publish a new version when there is a tag to the push
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
# PyPI user
user: __token__
# Password for your PyPI user or an access token
password: ${{secrets.PYPI_TOKEN_TEEMI}}
skip-existing: true
verbose: true
- name: Create GitHub release
if: startsWith(github.ref, 'refs/tags') && matrix.python-version == '3.11'
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ github.ref_name }}
name: ${{ github.ref_name }}
generate_release_notes: true