From 1b491531dd17caf13ac525427e71cddf2486ee2f Mon Sep 17 00:00:00 2001 From: d9pouces Date: Tue, 13 Jan 2026 22:23:46 +0100 Subject: [PATCH] ci: add Python 3.14 to actions --- .github/workflows/publish.yml | 4 ++-- .github/workflows/pytest.yml | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0f1acc9..0538c84 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -19,7 +19,7 @@ jobs: - uses: actions/setup-python@v5.3.0 with: python-version: ${{ matrix.python-version }} - - run: python3 -m pip install --user hypothesis pytest tox coverage uv - - run: python3 -m pytest --doctest-modules --doctest-glob=df_config/*.py --doctest-glob=df_config/**/*.py + - run: python3 -m pip install --user hypothesis pytest uv + - run: python3 -m pytest rubymarshal/tests - run: python3 -m uv build - run: python3 -m uv publish diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index eb9ab1f..384394f 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -18,5 +18,6 @@ jobs: - uses: actions/setup-python@v5.3.0 with: python-version: ${{ matrix.python-version }} - - run: python3 -m pip install --user hypothesis pytest + - run: python3 -m pip install --user hypothesis pytest uv - run: python3 -m pytest rubymarshal/tests + - run: python3 -m uv build