chore(deps): update all patch dependencies #839
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: Lint, format and test code | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- saas_app/** | |
- .github/workflows/ci_code.yml | |
env: | |
TERRAGRUNT_VERSION: v0.31.1 | |
jobs: | |
lint-fmt-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Setup python | |
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1 | |
with: | |
python-version: "3.11" | |
- name: Install dev dependencies | |
working-directory: ./saas_app | |
run: make install-dev | |
- name: Install dependencies | |
working-directory: ./saas_app | |
run: make install | |
- name: Lint | |
working-directory: ./saas_app | |
run: make lint-ci | |
- name: Format | |
working-directory: ./saas_app | |
run: make fmt-ci | |
- name: Test | |
working-directory: ./saas_app | |
run: make test |