enabling gh_actions

This commit is contained in:
Julian Hammer
2020-12-15 12:06:05 +01:00
committed by Jan
parent 60f792c4b2
commit f6a02a8f3e
2 changed files with 67 additions and 0 deletions

28
.github/workflows/lint.yml vendored Normal file
View File

@@ -0,0 +1,28 @@
name: Lint
on: push
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install Python dependencies
run: python -m pip install black flake8
- name: Run linters
uses: wearerequired/lint-action@v1
with:
github_token: ${{ secrets.github_token }}
# Enable linters
black: true
flake8: true

39
.github/workflows/test-n-publish.yml vendored Normal file
View File

@@ -0,0 +1,39 @@
name: test-n-publish
on: [push, pull_request]
jobs:
test-n-publish:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.5, 3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
name: Set up Python ${{ matrix.python-version }}
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
python -m pip install --upgrade pip
python -m pip install codecov requests
python -m pip install bs4
python -m pip install pygraphviz
python -m pip install kerncraft
python -m pip install -e .
- name: Test
run: |
coverage run -p tests/all_tests.py
- uses: codecov/codecov-action@v1
- name: Build package
run: |
python setup.py build sdist
- name: Publish to PyPI
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
skip_existing: true
user: __token__
password: ${{ secrets.pypi_password }}