Skip to content

chore(deps): update all minor dependencies #896

chore(deps): update all minor dependencies

chore(deps): update all minor dependencies #896

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:bec340fb35711dd4a989146591b6adfaac53e6b0c02524ff956c43b054d117dd
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