updated workflows

This commit is contained in:
Christopher Pickering 2021-09-17 09:43:11 +02:00
parent 026e2b04e0
commit 0b3dfd68ef
No known key found for this signature in database
GPG key ID: E14DB3B0A0FACF84
4 changed files with 17 additions and 3 deletions

View file

@ -1,4 +1,4 @@
name: Docs
name: docs
on:
release:

14
.github/workflows/lint.yml vendored Normal file
View file

@ -0,0 +1,14 @@
name: lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: build docs
run: |
pip install tox
tox -e lint

View file

@ -6,7 +6,7 @@
# separate terms of service, privacy policy, and support
# documentation.
name: Upload Python Package
name: deploy to pypi
on:
release:

View file

@ -1,5 +1,5 @@
name: test
on: [push]
on: [push, pull_request]
jobs:
test: