Skip to content

Commit 8c0d8fd

Browse files
committed
attempt using gitlab ci
1 parent 38b5247 commit 8c0d8fd

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

.github/workflows/pytest.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Run Python Tests
2+
3+
on:
4+
push:
5+
branches: [ "master", "staging"]
6+
pull_request:
7+
branches: [ "master", "staging" ]
8+
9+
permissions:
10+
contents: read
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- uses: actions/checkout@v5
18+
19+
- name: Install the latest version of uv
20+
uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57
21+
with:
22+
enable-cache: true
23+
24+
- name: run tests
25+
run: uv run pytest

0 commit comments

Comments
 (0)