We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c584976 commit 85ed1ebCopy full SHA for 85ed1eb
.github/workflows/python-tests.yml
@@ -0,0 +1,33 @@
1
+name: Run Python tests
2
+
3
+on:
4
+ push:
5
+ branches: [ main, dev ]
6
+ pull_request:
7
8
9
+jobs:
10
+ test:
11
+ runs-on: ${{ matrix.os }}
12
+ strategy:
13
+ matrix:
14
+ os: [ubuntu-latest, windows-latest]
15
+ python-version: ['3.9']
16
17
+ steps:
18
+ - name: Checkout code
19
+ uses: actions/checkout@v4
20
21
+ - name: Install uv
22
+ uses: astral-sh/setup-uv@v5
23
24
+ - name: Set up Python
25
+ uses: actions/setup-python@v5
26
+ with:
27
+ python-version: ${{ matrix.python-version }}
28
29
+ - name: Install bedrock-ge with testing dependencies
30
+ run: uv sync --locked --group tests
31
32
+ - name: Run tests
33
+ run: uv run pytest tests
0 commit comments