Add the possibility to repeat multiple copies of all the cards of a deck #56
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Test and publish" | |
on: | |
push: | |
jobs: | |
test: | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
python-version: | |
- "3.10" | |
- "3.11" | |
steps: | |
- name: "Checkout Code" | |
uses: "actions/checkout@v3" | |
- name: "Prepare Python" | |
uses: "actions/setup-python@v4" | |
with: | |
python-version: "${{ matrix.python-version }}" | |
- name: "Install Dependencies" | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements_test.txt | |
- name: "Lint" | |
run: | | |
make lint | |
- name: "Test" | |
run: | | |
make test-coverage | |
publish: | |
runs-on: "ubuntu-latest" | |
needs: "test" | |
if: "startsWith(github.ref, 'refs/tags/v')" | |
steps: | |
- name: "Checkout Code" | |
uses: "actions/checkout@v3" | |
- name: "Build" | |
run: | | |
python -m pip install --upgrade pip | |
pip install build | |
python -m build | |
- name: "Publish to Pypi" | |
uses: "pypa/gh-action-pypi-publish@release/v1" | |
with: | |
password: "${{ secrets.PYPI_API_TOKEN }}" | |
- name: "Create Release" | |
uses: "softprops/action-gh-release@v1" | |
with: | |
files: "dist/*" | |
prerelease: True |