revise it v1.2 #42
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |