Skip to content

feat: init pytest workflow #6

feat: init pytest workflow

feat: init pytest workflow #6

Workflow file for this run

name: Build And Test
on:
pull_request:
branches: [ "main" ]
paths:
- .github/workflows/aws-preview.yml
- server/**
- petercat_utils/**
- subscriber/**
jobs:
build:
runs-on: ubuntu-latest
environment: production
strategy:
fail-fast: true
defaults:
run:
working-directory: ./server
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12.0'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Lint with Ruff
run: |
pip install ruff
ruff check --output-format=github .
- name: Test with pytest
run: |
pip install pytest pytest-cov
pytest