Skip to content
Merged

Dev #10

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build_dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ permissions:

jobs:
Build-Dist:
if: false # TODO: remove this line to enable this workflow
name: Build dist
runs-on: ubuntu-latest

Expand All @@ -24,7 +25,6 @@ jobs:
python -m venv ./venv
. ./venv/bin/activate
python -m pip install --upgrade pip
pip install wheel build
pip install poetry
poetry install --with=dev --no-interaction --no-ansi

Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:

jobs:
Build-Docs:
if: false # TODO: remove this line to enable this workflow
name: Build docs
runs-on: ubuntu-latest

Expand Down Expand Up @@ -60,4 +61,10 @@ jobs:
github_token: ${{secrets.GITHUB_TOKEN}}
branch: gh-pages
force: true
directory: docs
directory: docs

- name: Publish distribution to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
skip_existing: true
verbose: true
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
![Tests Workflow](https://github.com/JeremieGince/PythonProject-Template/actions/workflows/tests.yml/badge.svg)
![Dist Workflow](https://github.com/JeremieGince/PythonProject-Template/actions/workflows/build_dist.yml/badge.svg)
![Doc Workflow](https://github.com/JeremieGince/PythonProject-Template/actions/workflows/docs.yml/badge.svg)
![Publish Workflow](https://github.com/JeremieGince/PythonProject-Template/actions/workflows/publish.yml/badge.svg)
![Code coverage](https://raw.githubusercontent.com/JeremieGince/PythonProject-Template/coverage-badge/coverage.svg)

# Description
Expand Down
Loading