Skip to content

templates/pyproject.toml: Remove settings.prc from include_patterns #18

templates/pyproject.toml: Remove settings.prc from include_patterns

templates/pyproject.toml: Remove settings.prc from include_patterns #18

Workflow file for this run

name: Pipeline
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install Package
run: |
pip install -e .[test]
- name: Run Tests
run: |
python -m pytest
- name: Build package
run: |
python -m pip install --upgrade build
python -m build
- name: Publish package
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.pypi_password }}