Skip to content

Commit

Permalink
include 3.10 in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
zkurtz committed Nov 23, 2024
1 parent 281ac7d commit affdfb7
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 30 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,30 @@ name: CI
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]

jobs:
build:
name: continuous-integration
runs-on: ubuntu-latest

strategy:
matrix:
python-version: ['3.10', '3.12']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Set the python version for UV
run: echo "UV_PYTHON=${{ matrix.python-version }}" >> $GITHUB_ENV

- name: Set up uv
run: pip install uv

- name: Check code quality with Ruff
run: uv run ruff check .
run: |
uv run ruff check
uv run ruff format --check
- name: Check type hints with pyright
run: uv run pyright
Expand Down
10 changes: 5 additions & 5 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information

project = 'packio'
copyright = '2024, Zach Kurtz'
author = 'Zach Kurtz'
project = "packio"
copyright = "2024, Zach Kurtz"
author = "Zach Kurtz"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand All @@ -18,6 +18,6 @@

# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
html_static_path = ['_static']
html_static_path = ["_static"]
html_theme = "alabaster"
html_baseurl = 'https://zkurtz.github.io/packio/docs/'
html_baseurl = "https://zkurtz.github.io/packio/docs/"
42 changes: 21 additions & 21 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit affdfb7

Please sign in to comment.