Skip to content

Fix typo in publish command #10

Fix typo in publish command

Fix typo in publish command #10

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python application
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
ci:
strategy:
fail-fast: false
matrix:
python-version: [
# "3.9", # Disabling 3.9 to get the build working
"3.10",
"3.11",
"3.12",
]
poetry-version: ["1.6.1"]
os: [
ubuntu-latest,
macos-latest,
# windows-latest, # Disabling Windows to get build working
]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/actions-poetry@v2
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install dependencies
run: poetry install --all-extras
- name: Run tests
run: poetry run pytest