Skip to content

chore(deps): update all patch dependencies #916

chore(deps): update all patch dependencies

chore(deps): update all patch dependencies #916

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.5@sha256:89d430f5f7e680e67f81de534eb459a3b86afd818e3330d9b18d29a6b9ec98cd
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@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
with:
python-version: "3.9"
- name: Setup node
uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
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