80 lines
2.3 KiB
YAML
80 lines
2.3 KiB
YAML
# see https://github.com/karlicoss/pymplate for up-to-date reference
|
|
|
|
name: CI
|
|
on:
|
|
push:
|
|
branches: '*'
|
|
tags: 'v[0-9]+.*' # only trigger on 'release' tags for PyPi
|
|
# TODO not sure if need 'pull_request'??
|
|
workflow_dispatch: # needed to trigger workflows manually
|
|
|
|
env:
|
|
# useful for scripts & sometimes tests to know
|
|
CI: true
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
platform: [ubuntu-latest, macos-latest] # TODO windows-latest??
|
|
python-version: [3.6, 3.7, 3.8]
|
|
|
|
runs-on: ${{ matrix.platform }}
|
|
|
|
steps:
|
|
# ugh https://github.com/actions/toolkit/blob/main/docs/commands.md#path-manipulation
|
|
- run: echo "$HOME/.local/bin" >> $GITHUB_PATH
|
|
|
|
- uses: actions/setup-python@v1
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: recursive
|
|
|
|
# uncomment for SSH debugging
|
|
# - uses: mxschmitt/action-tmate@v3
|
|
|
|
- run: scripts/ci/run
|
|
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: .coverage.mypy-misc_${{ matrix.platform }}_${{ matrix.python-version }}
|
|
path: .coverage.mypy-misc/
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: .coverage.mypy-core_${{ matrix.platform }}_${{ matrix.python-version }}
|
|
path: .coverage.mypy-core/
|
|
|
|
pypi:
|
|
runs-on: ubuntu-latest
|
|
needs: [build] # add all other jobs here
|
|
|
|
steps:
|
|
# ugh https://github.com/actions/toolkit/blob/main/docs/commands.md#path-manipulation
|
|
- run: echo "$HOME/.local/bin" >> $GITHUB_PATH
|
|
|
|
- uses: actions/setup-python@v1
|
|
with:
|
|
python-version: 3.7
|
|
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: recursive
|
|
|
|
- name: 'release to test pypi'
|
|
# always deploy merged master to test pypi
|
|
if: github.event.ref == 'refs/heads/master'
|
|
env:
|
|
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD_TEST }}
|
|
run: pip3 install --user wheel twine && scripts/release --test
|
|
# TODO run pip install just to test?
|
|
|
|
- name: 'release to pypi'
|
|
# always deploy tags to release pypi
|
|
# NOTE: release tags are guarded by on: push: tags on the top
|
|
if: startsWith(github.event.ref, 'refs/tags')
|
|
env:
|
|
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
|
|
run: pip3 install --user wheel twine && scripts/release
|