Skip to content

Commit 2ced295

Browse files
lassebenniLasse Benninga
andauthored
add github folder (#21)
* add github folder * add it --------- Co-authored-by: Lasse Benninga <devops.pipeline@example.com>
1 parent fff39f6 commit 2ced295

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: ["main"]
6+
pull_request:
7+
8+
jobs:
9+
test:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
14+
# TODO 1: Add a step to set up Python 3.11.
15+
# Use: actions/setup-python@v5 with python-version: "3.11"
16+
- uses: actions/setup-python@v5
17+
with:
18+
python-version: "3.11"
19+
20+
# TODO 2: Add a step to install pytest.
21+
# Use: pip install pytest
22+
23+
# TODO 3: Add a step to run pytest.
24+
# Use: pytest -q

0 commit comments

Comments
 (0)