From ffb1256e24a6c31a3756900796a19709256c9219 Mon Sep 17 00:00:00 2001 From: KoenigMjr <135820716+KoenigMjr@users.noreply.github.com> Date: Mon, 9 Jun 2025 12:54:38 +0200 Subject: [PATCH] Update run_pytest.yml --- .github/workflows/run_pytest.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/run_pytest.yml b/.github/workflows/run_pytest.yml index a047d48..0f26b5e 100644 --- a/.github/workflows/run_pytest.yml +++ b/.github/workflows/run_pytest.yml @@ -8,14 +8,14 @@ jobs: strategy: matrix: os: [ubuntu-latest] - python-version: ['3.7', '3.8', '3.9', '3.10'] - runs-on: ${{matrix.os}} + python-version: ['3.8', '3.9', '3.10'] + runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - - name: Set up Python ${{matrix.python-version}} at ${{matrix.os}} - uses: actions/setup-python@v3 + - name: Set up Python ${{ matrix.python-version }} at ${{ matrix.os }} + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} @@ -23,14 +23,14 @@ jobs: run: | python -m pip install --upgrade pip pip install -r requirements.txt - mkdir log/ + mkdir -p log/ - name: Test with pytest run: | - pytest -c 'test/pytest.ini' + pytest -c test/pytest.ini - name: Save artifacts - uses: actions/upload-artifact@master + uses: actions/upload-artifact@v4 with: name: test.log - path: log/test.log + path: log/test.log \ No newline at end of file