From 3c76f8f99b6d0dd56d34a8aa77521315cc3da383 Mon Sep 17 00:00:00 2001 From: Lorenz Rumberger Date: Tue, 6 Jan 2026 10:19:03 +0100 Subject: [PATCH] Updated CI --- .github/workflows/test.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index e1dead3..d06a9a1 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -1,6 +1,6 @@ name: Test -on: +on: workflow_call: permissions: @@ -16,14 +16,14 @@ jobs: python-version: ["3.9", "3.10", "3.11"] os: [ubuntu-latest, macos-latest, windows-latest] - steps: + steps: - name: Checkout ${{ github.repository }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} cache-dependency-path: "**/pyproject.toml" @@ -37,9 +37,9 @@ jobs: run: | python -m pytest - - name: Archive Coverage + - name: Archive Coverage uses: actions/upload-artifact@v4 with: name: coverage-${{ join(matrix.*, '-') }} path: | - coverage.lcov + coverage.lcov \ No newline at end of file