diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 0000000..a73092f --- /dev/null +++ b/.github/workflows/lint.yml @@ -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 diff --git a/.github/workflows/test-n-publish.yml b/.github/workflows/test-n-publish.yml new file mode 100644 index 0000000..d6133c7 --- /dev/null +++ b/.github/workflows/test-n-publish.yml @@ -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 }} \ No newline at end of file