Skip to content

Commit 69b2736

Browse files
committed
Test test run by GitHub
1 parent f4ef1d2 commit 69b2736

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build-pipeline.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- main
99
jobs:
1010
build:
11-
runs-on: ${{ matrix.os }}
11+
runs-on: ${{ matrix.os }}
1212
env:
1313
PYTHONIOENCODING: "utf8"
1414
strategy:
@@ -21,14 +21,16 @@ jobs:
2121
- name: Set up Python
2222
uses: actions/setup-python@v5
2323
with:
24-
python-version: ${{ matrix.python-version }}
24+
python-version: ${{ matrix.python-version }}
2525
- name: Install dependencies
2626
run: |
2727
python -m pip install --upgrade pip
2828
pip install .[dev]
2929
- name: Run Linting
3030
run: |
3131
ruff check .
32+
- name: Set PYTHONPATH
33+
run: echo "PYTHONPATH=$(pwd)" >> $GITHUB_ENV
3234
- name: Run Tests
3335
run: |
3436
pytest tests/

0 commit comments

Comments
 (0)