mirror of
https://github.com/dcarrillo/digaws.git
synced 2024-11-15 03:31:12 +00:00
62 lines
1.3 KiB
YAML
62 lines
1.3 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
|
|
jobs:
|
|
tests:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
python-version: [3.7, 3.8, 3.9]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Install nox
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install nox
|
|
|
|
- name: Lint and typing
|
|
run: |
|
|
nox -rs lint typing
|
|
|
|
- name: Tests
|
|
run: |
|
|
nox -rs tests -- -v
|
|
|
|
build_publish:
|
|
runs-on: ubuntu-latest
|
|
if: github.event_name == 'push'
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Python 3.8
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.8
|
|
|
|
- name: Install tools
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install twine
|
|
|
|
- name: Build
|
|
run: |
|
|
python setup.py sdist bdist_wheel
|
|
|
|
- name: Publish
|
|
run: |
|
|
export TWINE_USERNAME=${{ secrets.TWINE_USERNAME }}
|
|
export TWINE_PASSWORD=${{ secrets.TWINE_PASSWORD }}
|
|
twine upload dist/*
|