-
Notifications
You must be signed in to change notification settings - Fork 5
74 lines (70 loc) · 2.1 KB
/
pythonapp.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: Python application
on: [push, pull_request]
jobs:
build:
name: Build distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.8"
# PIP BUILD
# - name: Install pypa/build and twine
# run: python3 -m pip install build twine setuptools_scm
# - name: Build a binary wheel and a source tarball
# run: python3 -m build
# - name: Store the distribution packages
# uses: actions/upload-artifact@v4
# with:
# name: python-package-distributions
# path: dist/
test:
name: Run test suite
needs:
- build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Build the Docker image
run: ./go.sh build
- name: Run tests
run: ./go.sh run_tests
# Developer note: Fix flake8 errors before uncommenting here.
# - name: Lint with flake8 for pull requests
# if: github.event_name == 'pull_request'
# run: |
# pip install flake8 # specify flake8 to avoid unknown error
# # stop the build if there are Python syntax errors or undefined names
# flake8 .
# PIP PUBLISH
# publish-to-pypi:
# name: Publish Python distribution to PyPI
# if: github.ref == 'refs/heads/master' && github.event_name == 'push'
# needs:
# - build
# - test
# runs-on: ubuntu-latest
# steps:
# - name: Checkout code
# uses: actions/checkout@v4
# - name: Set up Python
# uses: actions/setup-python@v5
# with:
# python-version: "3.8"
# - name: Install twine
# run: pip install twine
# - name: Download distribution packages
# uses: actions/download-artifact@v4
# with:
# name: python-package-distributions
# path: dist/
# - name: Check dist/
# run: twine check dist/*
# - name: Publish Python dist to PyPI
# run: twine upload dist/*
# env:
# TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}