Skip to content

Update README.md with project overview, tech stack, installation inst… #4

Update README.md with project overview, tech stack, installation inst…

Update README.md with project overview, tech stack, installation inst… #4

Workflow file for this run

name: Tests
on:
push:
branches: [main, dev/*, fix/*, feature/*]
pull_request:
branches: [main, dev/*, fix/*, feature/*]
jobs:
tests:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Test
run: |
docker compose run --rm api sh -c "pytest -v"