Skip to content

Rebase staging from master #540

Rebase staging from master

Rebase staging from master #540

Workflow file for this run

name: "Test"
on:
push:
branches:
- master
- staging
- hotfix/**
pull_request:
jobs:
Pipeline:
runs-on: checklist-as-code-runner-jrjc2-x5z8g
container: quintoandar/python-3-7-java
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: make ci-install
- name: Style check
run: PYTHONPATH=./pip/deps make style-check
- name: Quality check
run: PYTHONPATH=./pip/deps make quality-check
- name: Static Type check
run: PYTHONPATH=./pip/deps make type-check
- name: Tests
run: PYTHONPATH=./pip/deps make tests