-
-
Notifications
You must be signed in to change notification settings - Fork 1
69 lines (57 loc) · 1.67 KB
/
build.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
name: Test and Deploy
on:
push:
pull_request:
branches: [ "master" ]
workflow_dispatch:
permissions:
contents: write
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Set up Python environment
run: |
python -m pip install --upgrade pip
pip install pipenv
pipenv requirements --dev > requirements.txt
pip install -r requirements.txt
- name: Run linter
run: flake8 tiny_api_client
- name: Run type checker
run: mypy --strict tiny_api_client
- name: Run test suite
run: pytest --mypy-ini-file=tests/test_mypy_plugin.ini --mypy-only-local-stub -v
pypi:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
needs: [ test ]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Set up Python environment
run: |
python -m pip install --upgrade pip
pip install pipenv
pipenv requirements --dev > requirements.txt
pip install -r requirements.txt
- name: Build and upload to PyPI
env:
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
run: |
python -m build
twine upload dist/*