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 c7497df commit 6c8e277Copy full SHA for 6c8e277
.github/workflows/unittests.yaml
@@ -1,28 +1,16 @@
1
name: Continuous Integration
2
-
3
-on:
4
- push:
5
- branches: [ main, add-auto-tests ]
6
- pull_request:
7
- branches: [ main ]
8
+on: [push, pull_request]
9
jobs:
10
build:
11
runs-on: ubuntu-latest
12
13
steps:
14
- - uses: actions/checkout@v3
15
+ - uses: actions/checkout@v2
16
- name: Set up Python
17
- uses: actions/setup-python@v4
+ uses: actions/setup-python@v2
18
with:
19
- python-version: 3.12
+ python-version: 3.12.0
20
architecture: x64
21
22
- name: Install dependencies
23
- run: |
24
- python -m pip install --upgrade pip
25
- pip install -r requirements.txt
26
+ run: pip install -r requirements.txt
27
- name: Run Tests
28
run: python -m pytest
0 commit comments