-
Notifications
You must be signed in to change notification settings - Fork 9
63 lines (54 loc) · 1.54 KB
/
build_and_test.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
name: Build, Test, and Deploy nrt
on:
push:
pull_request:
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- name: checkout repo + LFS files
uses: actions/checkout@v2
with:
lfs: true
- name: checkout lfs objects
run: git lfs checkout
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies and package
run: |
python -m pip install --upgrade pip
pip install pytest wheel
pip install .
- name: Test with pytest
run: |
pytest
# Deploy tagged commits that pass the test step
deploy:
needs: build-and-test
runs-on: ubuntu-latest
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
steps:
- name: Checkout repository + LFS files
uses: actions/checkout@v2
with:
lfs: true
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Install pypi-publish requirements
run: |
python -m pip install --upgrade pip twine build
- name: Build package
run: |
python -m build
- name: Publish package to PyPI
uses: pypa/[email protected]
with:
password: ${{ secrets.PYPI_API_TOKEN }}
user: __token__