Skip to content

add test workflow: build project without docker and run some tests #1

add test workflow: build project without docker and run some tests

add test workflow: build project without docker and run some tests #1

Workflow file for this run

name: Test build project and run tests without docker
on: [ push, pull_request ]
jobs:
build-and-launch:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python 3.14
uses: actions/setup-python@v5
with:
python-version: '3.14'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run Python tests
working-directory: ./backend/file_utils
run: |
python -m pytest tests/ -v --cov=./ --cov-report=xml