Skip to content

chore(deps): update all patch dependencies #850

chore(deps): update all patch dependencies

chore(deps): update all patch dependencies #850

Workflow file for this run

name: Lint, format and test code
on:
workflow_dispatch:
pull_request:
paths:
- api/**
jobs:
tests:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:15.4@sha256:3faff326de0fa3713424d44f3b85993459ac1917e0a4bfd35bab9e0a58e41900
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: list-manager
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
strategy:
fail-fast: false
matrix:
folder: ["api"]
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Setup python
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1
with:
python-version: "3.9"
- name: Setup node
uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3.8.2
with:
node-version: "14"
- name: Install dev dependencies
working-directory: ${{ matrix.folder }}
run: make install-dev
- name: Install dependencies
working-directory: ${{ matrix.folder }}
run: make install
- name: Lint
working-directory: ${{ matrix.folder }}
run: make lint-ci
- name: Format
working-directory: ${{ matrix.folder }}
run: make fmt-ci
- name: Test
working-directory: ${{ matrix.folder }}
env:
SQLALCHEMY_DATABASE_URI: postgresql://postgres:[email protected]/list-manager
SQLALCHEMY_DATABASE_TEST_URI: postgresql://postgres:[email protected]/list-manager
run: make test