Skip to content

wip: typo

wip: typo #143

Workflow file for this run

# This workflow will install Python dependencies, run tests, build package and publish on pipy
name: ci-cd
# WIll run on push commands
on: [push]
jobs:
ci:
# Set up operating system
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
# Define job steps
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "16"
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Check-out repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test with pytest
run: |
pytest --cov --cov-report=xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
- name: Build package
run: python setup.py sdist bdist_wheel
- name: pypi-publish
# You may pin to the exact commit or the version.
# uses: pypa/gh-action-pypi-publish@717ba43cfbb0387f6ce311b169a825772f54d295
# we only publish a new version when there is a tag to the push
if: startsWith(github.ref, 'refs/tags')
uses: pypa/[email protected]
with:
# PyPI user
user: __token__
# Password for your PyPI user or an access token
password: ${{secrets.PYPI_TOKEN_TEEMI}}