aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMike Crute <mike@crute.us>2020-06-03 21:35:02 +0000
committerMike Crute <mike@crute.us>2020-06-03 22:38:17 +0000
commit6031c1f78a3ab0c30fb7c108df28281ca1dbce83 (patch)
treea6ad120384e9032865e45a2f2ad4b03ca373ca14 /.github
parent42fd534ed0f4d5d973b96a5c4b4ce0a891206444 (diff)
downloadpydora-6031c1f78a3ab0c30fb7c108df28281ca1dbce83.tar.bz2
pydora-6031c1f78a3ab0c30fb7c108df28281ca1dbce83.tar.xz
pydora-6031c1f78a3ab0c30fb7c108df28281ca1dbce83.zip
Migrate builder to GitHub actions
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml30
1 files changed, 30 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
new file mode 100644
index 0000000..0f63125
--- /dev/null
+++ b/.github/workflows/build.yml
@@ -0,0 +1,30 @@
1name: build
2
3on:
4- push
5- pull_request
6
7jobs:
8 build:
9 runs-on: ${{ matrix.os }}
10
11 strategy:
12 matrix:
13 os:
14 - ubuntu-latest
15 - macos-latest
16 python-version:
17 - 3.5
18 - 3.6
19 - 3.7
20 - 3.8
21
22 steps:
23 - uses: actions/checkout@v2
24
25 - uses: actions/setup-python@v2
26 with:
27 python-version: ${{ matrix.python-version }}
28
29 - run: pip install -U pip setuptools wheel mock nose pytest
30 - run: python setup.py release