We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e3579a1 + 6862809 commit e2f62caCopy full SHA for e2f62ca
.github/workflows/main.yml
@@ -0,0 +1,35 @@
1
+name: Python application
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
9
+permissions:
10
+ contents: read
11
12
+jobs:
13
+ build:
14
15
+ runs-on: ubuntu-latest
16
17
+ steps:
18
+ - uses: actions/checkout@v4
19
+ - name: Set up Python 3.10
20
+ uses: actions/setup-python@v3
21
+ with:
22
+ python-version: "3.10"
23
+ - name: Install dependencies
24
+ run: |
25
+ python -m pip install --upgrade pip
26
+ pip install pytest
27
+ - name: Test bat_power
28
+ run: pytest -m bat_power
29
+ - name: Test signal_strength
30
+ run: pytest -m signal_strength
31
+ - name: Test vehicles
32
+ run: pytest -m vehicles
33
+ - name: Test joker_info
34
+ run: pytest -m joker_info
35
0 commit comments