diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml new file mode 100644 index 0000000..faa22ee --- /dev/null +++ b/.github/workflows/python-package.yml @@ -0,0 +1,41 @@ +# This workflow will install Python dependencies, run tests and lint with a variety of Python versions +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python + +name: Python package + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + python-version: ["3.10", "3.11"] + + steps: + - uses: actions/checkout@v4 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v3 + with: + python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + python -m pip install --upgrade pip + python -m pip install flake8 + python -m pip install ".[test]" + if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + - name: Lint with flake8 + run: | + # stop the build if there are Python syntax errors or undefined names + flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics + # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide + flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics + - name: Test with pytest + run: | + pytest diff --git a/requirements.txt b/requirements.txt index 443bde8..4dbda8b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,30 +2,29 @@ # This file is autogenerated by pip-compile with Python 3.12 # by the following command: # -# pip-compile --output-file=requirements.txt pyproject.toml +# pip-compile --output-file=requirements.txt # -annotated-types==0.6.0 +annotated-types==0.7.0 # via pydantic -anyio==3.7.1 - # via - # fastapi - # starlette -fastapi==0.105.0 +anyio==4.7.0 + # via starlette +fastapi==0.115.6 # via fastapi-demo (pyproject.toml) -idna==3.6 +idna==3.10 # via anyio -pydantic==2.5.2 +pydantic==2.10.4 # via # fastapi # fastapi-demo (pyproject.toml) -pydantic-core==2.14.5 +pydantic-core==2.27.2 # via pydantic -sniffio==1.3.0 +sniffio==1.3.1 # via anyio -starlette==0.27.0 +starlette==0.41.3 # via fastapi -typing-extensions==4.9.0 +typing-extensions==4.12.2 # via + # anyio # fastapi # pydantic # pydantic-core