-
Notifications
You must be signed in to change notification settings - Fork 6
47 lines (40 loc) · 1.09 KB
/
master.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
name: Python package
on:
push:
branches:
- master
tags:
- '*'
pull_request:
branches:
- '*'
jobs:
build:
strategy:
matrix:
python-version: ["2.7"]
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: LizardByte/setup-python-action@master
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
# if [ ${{ matrix.dependency }} == django ]; then pip install Django<2.2; fi
pip install -r requirements-dev.txt
- name: Run tests
run: |
make test check coverage
codecov
- name: Build
run: |
pip install -U pip wheel setuptools
python setup.py sdist bdist_wheel
- name: Publish a Python distribution to PyPI
uses: pypa/gh-action-pypi-publish@master
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
with:
user: ${{ secrets.pypi_user }}
password: ${{ secrets.pypi_password }}