Skip to content

Commit

Permalink
Merge pull request #5 from mason3k/mason3k-github-actions
Browse files Browse the repository at this point in the history
Create python-package.yml
  • Loading branch information
mason3k authored Dec 19, 2024
2 parents 53a6b65 + 8bcdd3b commit 83b2c4c
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 13 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
@@ -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
25 changes: 12 additions & 13 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 83b2c4c

Please sign in to comment.