Skip to content

chore(deps): update all minor dependencies #840

chore(deps): update all minor dependencies

chore(deps): update all minor dependencies #840

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@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- name: Setup python
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1
with:
python-version: "3.9"
- name: Setup node
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.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