Skip to content

Merge pull request #237 from zero-sum-seattle/refactor/pydantic-model… #35

Merge pull request #237 from zero-sum-seattle/refactor/pydantic-model…

Merge pull request #237 from zero-sum-seattle/refactor/pydantic-model… #35

name: Python Build MLBstats API
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
- name: Install dependencies
run: poetry install --no-interaction
- name: Test with mocks with pytest
run: poetry run pytest tests/mock_tests/
- name: Test external tests with pytest
run: poetry run pytest tests/external_tests/
- name: Build package
run: poetry build
- name: Publish a Python distribution to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}