diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8bf139d..e92f95c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,13 +10,14 @@ on: jobs: build: runs-on: ubuntu-latest + steps: - uses: actions/checkout@v4 - - name: Set up Python 3.x + - name: Set up Python 3.10 uses: actions/setup-python@v4 with: - python-version: '3.x' + python-version: '3.10' - name: Install dependencies run: | @@ -24,4 +25,4 @@ jobs: pip install pytest - name: Test with pytest - run: python -m pytest ../../tests/tests.py \ No newline at end of file + run: python -m pytest ./tests/tests.py \ No newline at end of file