From 2d8a36741a117c52f4499a8158eafdf12694caa1 Mon Sep 17 00:00:00 2001 From: Hiroshi Nishio <4620828+hiroshinishio@users.noreply.github.com> Date: Tue, 19 Mar 2024 15:33:01 -0700 Subject: [PATCH] . --- .github/workflows/python-pytest.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-pytest.yml b/.github/workflows/python-pytest.yml index e1d8dff5..804ea87b 100644 --- a/.github/workflows/python-pytest.yml +++ b/.github/workflows/python-pytest.yml @@ -8,13 +8,18 @@ jobs: steps: - uses: actions/checkout@v2 + - name: Set up Python 3.12 uses: actions/setup-python@v2 with: python-version: 3.12 + - name: Install pytest run: pip install pytest + - name: Set PYTHONPATH run: echo "PYTHONPATH=$GITHUB_WORKSPACE" >> $GITHUB_ENV + - name: Run pytest - run: pytest \ No newline at end of file + run: pytest + working-directory: ./gitauto