-
Notifications
You must be signed in to change notification settings - Fork 1
57 lines (50 loc) · 1.28 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
name: builds
on:
push:
branches: [main]
paths:
- "src/**.py"
- "setup.py"
- "setup.cfg"
- ".github/workflows/build.yml"
pull_request:
branches-ignore: ["**docker**"]
paths:
- "src/**.py"
- "setup.py"
- "setup.cfg"
- ".github/workflows/build.yml"
schedule:
- cron: "0 0 1 * *"
jobs:
build:
name: Test build process
strategy:
matrix:
python-version: ["3.7", "3.10"]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade python setuptools
run: |
pip install --upgrade pip
pip install --upgrade wheel setuptools setuptools_scm
- name: Inspect version info
run: |
python setup.py --version
git describe --dirty --tags --long --match "*[0-9]*"
- name: Test pip install syntax
run: |
pip install .
pip uninstall -y mud-examples
- name: Test build
run: |
python setup.py sdist bdist_wheel
pip uninstall -y mud-examples