-
Notifications
You must be signed in to change notification settings - Fork 2
72 lines (68 loc) · 2.06 KB
/
ci-workflow.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
---
# This workflow will install Python dependencies, run tests and lint with a
# variety of Python versions For more information see:
# https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Testing
# yamllint disable-line rule:truthy
on:
push:
branches: ["master", "develop"]
tags: ["v*"]
pull_request:
branches: ["master", "develop"]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.x"]
services:
postgres:
image: postgres
env:
POSTGRES_PASSWORD: mys3cr37passw0rd
POSTGRES_DB: testdb
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python3 -m venv env
./env/bin/pip install -U pip
./env/bin/pip install -e .[test]
- name: Test with pytest
env:
PGFLUX_POSTGRES_DSN: >-
postgresql://postgres:mys3cr37passw0rd@localhost/testdb
run: |
./env/bin/pytest
publish:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build distribution
if: github.event_name == 'push' &&
startsWith(github.event.ref, 'refs/tags')
run: |
python -m pip install --upgrade pip
python -m pip install build
/home/runner/.local/bin/pyproject-build
- name: Publish package
if: github.event_name == 'push' &&
startsWith(github.event.ref, 'refs/tags')
uses: "pypa/gh-action-pypi-publish@\
e777b33388fefa46ce597d8afa9c15a5357af36f"
with:
user: __token__
password: ${{ secrets.pypi_token }}