Skip to content

chore(deps): update all patch dependencies #431

chore(deps): update all patch dependencies

chore(deps): update all patch dependencies #431

Workflow file for this run

name: Lint, format and test code
on:
pull_request:
branches:
- main
paths:
- api/**
- .github/workflows/ci-code.yml
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup python
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
with:
python-version: "3.13"
- name: Install dependencies
working-directory: ./api
run: |
make install
make install-dev
- name: Lint
working-directory: ./api
run: make lint-ci
- name: Format
working-directory: ./api
run: make fmt-ci
- name: Test
working-directory: ./api
run: make test