We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fff39f6 commit 2ced295Copy full SHA for 2ced295
1 file changed
.github/workflows/ci.yml
@@ -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