diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8f1d95d1..5e518d8d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,18 +18,13 @@ jobs: - name: โคต๏ธ Checkout repository uses: actions/checkout@v4 - - name: ๐Ÿ— Install uv + - name: ๐Ÿ— Install uv and Python uses: astral-sh/setup-uv@v4 with: enable-cache: true cache-dependency-glob: "uv.lock" cache-local-path: ${{ env.UV_CACHE_DIR }} - - name: ๐Ÿ— Set up Python - uses: actions/setup-python@v5 - with: - python-version-file: ".python-version" - - name: ๐Ÿ— Install the project run: uv sync --locked --dev @@ -55,15 +50,13 @@ jobs: - name: โคต๏ธ Checkout repository uses: actions/checkout@v4 - - name: ๐Ÿ— Install uv + - name: ๐Ÿ— Install uv and Python ${{ matrix.python-version }} uses: astral-sh/setup-uv@v4 with: enable-cache: true cache-dependency-glob: "uv.lock" cache-local-path: ${{ env.UV_CACHE_DIR }} - - - name: ๐Ÿ— Set up Python ${{ matrix.python-version }} - run: uv python install ${{ matrix.python-version }} + python-version: ${{ matrix.python-version }} - name: ๐Ÿ— Install the project run: uv sync --locked --dev diff --git a/mypy.ini b/mypy.ini index 0d27fbb4..27b25ee0 100644 --- a/mypy.ini +++ b/mypy.ini @@ -1,5 +1,5 @@ [mypy] -python_version = 3.12 +python_version = 3.13 show_error_codes = true strict_equality = true warn_incomplete_stub = true