diff --git a/.github/workflows/automated-testing.yml b/.github/workflows/automated-testing.yml index 0e8ab5d..d43cf66 100644 --- a/.github/workflows/automated-testing.yml +++ b/.github/workflows/automated-testing.yml @@ -28,10 +28,10 @@ jobs: runs-on: ${{ matrix.platform }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} diff --git a/tests/test_example.py b/tests/test_example.py index 042ca53..02c6da2 100644 --- a/tests/test_example.py +++ b/tests/test_example.py @@ -9,8 +9,8 @@ SPDX-License-Identifier: MIT """ -from super_repo.example_calculator import add, divide, multiply, subtract from pytest import raises +from super_repo.example_calculator import add, divide, multiply, subtract def test_addition():