-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (50 loc) · 1.37 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: Build
on: [push]
jobs:
python-formatting:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.12
- name: Install flake8
run: pip install flake8
- name: Install black
run: pip install black
- name: black formatting
run: black .
- name: Run flake8
run: flake8 .
unit-tests:
runs-on: ubuntu-latest
needs: python-formatting
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.12
- name: Verify Current Working Directory
run: |
echo "Current Working Directory:"
pwd
- name: Install pip
run: pip install -r ./requirements.txt
- name: Run pytest
run: pytest ./src/*.py
deploy-to-impaas:
needs: unit-tests # Ensure this job runs after the unit tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: ImPaaS-Deploy
uses: impaas/impaas-deploy@v3 # Corrected to ensure proper usage
with:
app-name: gz424-sse-app
deployment-token: ${{ secrets.IMPAAS_DEPLOY_TOKEN }}
method: PLATFORM