Update develop branch #1
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: Forms Flow Data Analysis API CI | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- develop | |
- master | |
- release/** | |
paths: | |
- "forms-flow-data-analysis-api/**" | |
defaults: | |
run: | |
shell: bash | |
working-directory: ./forms-flow-data-analysis-api | |
jobs: | |
setup-job: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- run: "true" | |
Lint: | |
needs: setup-job | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python-version: [3.11.10] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
pip install -r requirements/dev.txt | |
- name: Pylint | |
id: pylint | |
run: | | |
pylint --rcfile=setup.cfg src/api | |
Test: | |
if: always() | |
needs: setup-job | |
env: | |
FLASK_ENV: "testing" | |
DATABASE_URL_TEST: "postgresql://postgres:postgres@localhost:6432/postgres" | |
JWT_OIDC_ALGORITHMS: "RS256" | |
KEYCLOAK_URL: "http://localhost:8081" | |
KEYCLOAK_URL_REALM: "forms-flow-ai" | |
KEYCLOAK_BPM_CLIENT_SECRET: "demo" | |
JWT_OIDC_WELL_KNOWN_CONFIG: "http://localhost:8081/auth/realms/forms-flow-ai/.well-known/openid-configuration" | |
JWT_OIDC_JWKS_URI: "http://localhost:8081/auth/realms/forms-flow-ai/protocol/openid-connect/certs" | |
JWT_OIDC_ISSUER: "http://localhost:8081/auth/realms/forms-flow-ai" | |
JWT_OIDC_AUDIENCE: "forms-flow-web" | |
JWT_OIDC_CACHING_ENABLED: "True" | |
BPM_API_URL: ${{ secrets.BPM_API_BASE }} | |
BPM_CLIENT_SECRET: ${{ secrets.BPM_CLIENT_SECRET }} | |
BPM_CLIENT_ID: ${{ secrets.BPM_CLIENT_ID }} | |
BPM_TOKEN_API: ${{ secrets.BPM_TOKEN_API }} | |
TEST_REVIEWER_USERID: ${{ secrets.TEST_REVIEWER_USERID }} | |
TEST_REVIEWER_PASSWORD: ${{ secrets.TEST_REVIEWER_PASSWORD }} | |
MODEL_ID: ${{ secrets.MODEL_ID }} | |
SKIP_IN_CI: "True" | |
USE_DOCKER_MOCK: "True" | |
runs-on: ubuntu-20.04 | |
services: | |
postgres: | |
image: postgres:13 | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: postgres | |
POSTGRES_DB: postgres | |
ports: | |
- 6432:5432 | |
# needed because the postgres container does not provide a healthcheck | |
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
make setup | |
- name: Download Sentiment Analysis Model | |
run: | | |
make download-models | |
- name: Test | |
id: test | |
run: | | |
make test | |
Build: | |
if: always() | |
runs-on: ubuntu-20.04 | |
name: Build | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Build | |
run: | | |
docker build . -t forms-flow-data-analysis-api |