Skip to content

Commit

Permalink
Add Github actions (#15)
Browse files Browse the repository at this point in the history
* Add Github actions

* Use both Python 3.7 & 3.8 for nox session

* Do not set arbitrary Python version for nox session

* Run nox on different Python versions

* Add deploy workflow

* Remove azure-pipelines
  • Loading branch information
bwilczynski committed Oct 6, 2020
1 parent fa39097 commit 82620a7
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 34 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Python Package
on:
release:
types: [created]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
16 changes: 16 additions & 0 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Python package
on: [push]
jobs:
verify:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.7, 3.8]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
architecture: x64
- run: pip install nox==2020.8.22
- run: nox
30 changes: 0 additions & 30 deletions azure-pipelines.yml

This file was deleted.

6 changes: 2 additions & 4 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,15 @@

locations = "sonos", "noxfile.py"

DEFAULT_PYTHON = "3.7"


@nox.session(python=DEFAULT_PYTHON)
@nox.session
def lint(session):
args = session.posargs or locations
session.install("flake8", "flake8-black")
session.run("flake8", *args)


@nox.session(python=DEFAULT_PYTHON)
@nox.session
def black(session):
args = session.posargs or locations
session.install("black")
Expand Down

0 comments on commit 82620a7

Please sign in to comment.