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 fb81a0c commit 32dddc6Copy full SHA for 32dddc6
.github/workflows/CD.yml renamed to .github/workflows/CICD.yml
@@ -1,12 +1,26 @@
1
-name: CD
+name: CICD
2
3
on:
4
push:
5
branches: [master, next]
6
7
jobs:
8
+ test:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v3
12
+ - name: Set up Python
13
+ uses: actions/setup-python@v3
14
+ with:
15
+ python-version: "3.9"
16
+ - name: Test
17
+ run: |
18
+ pip install pytest
19
+ pip install -r requirements.txt
20
+ pytest
21
build:
22
runs-on: ubuntu-latest
23
+ needs: test
24
steps:
25
- name: Checkout
26
uses: actions/checkout@v4
0 commit comments