Skip to content

chore(deps): update all minor dependencies #549

chore(deps): update all minor dependencies

chore(deps): update all minor dependencies #549

Workflow file for this run

name: Lint, format and test code
on:
workflow_dispatch:
pull_request:
paths:
- app/**
- .github/workflows/ci_code.yml
env:
TERRAGRUNT_VERSION: v0.31.1
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Audit DNS requests
uses: cds-snc/dns-proxy-action@main
env:
DNS_PROXY_FORWARDTOSENTINEL: "true"
DNS_PROXY_LOGANALYTICSWORKSPACEID: ${{ secrets.LOG_ANALYTICS_WORKSPACE_ID }}
DNS_PROXY_LOGANALYTICSSHAREDKEY: ${{ secrets.LOG_ANALYTICS_WORKSPACE_KEY }}
- name: Checkout
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- name: Setup python
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1
with:
python-version: "3.10"
- name: Install dev dependencies
working-directory: ./app
run: make install-dev
- name: Install dependencies
working-directory: ./app
run: make install
- name: Lint
working-directory: ./app
run: make lint-ci
- name: Format
working-directory: ./app
run: make fmt-ci
- name: Test
working-directory: ./app
run: make test
env:
GOOGLE_CLIENT_ID: ${{ secrets.GOOGLE_CLIENT_ID }}
GOOGLE_CLIENT_SECRET: ${{ secrets.GOOGLE_CLIENT_SECRET }}
SESSION_SECRET_KEY: ${{ secrets.SESSION_SECRET_KEY }}