Skip to content

fix: revert cron to daily schedule for Vercel Hobby plan compatibility #122

fix: revert cron to daily schedule for Vercel Hobby plan compatibility

fix: revert cron to daily schedule for Vercel Hobby plan compatibility #122

Workflow file for this run

name: CI
on:
push:
branches: [main, dev, "sprint-*"]
pull_request:
branches: [main, dev]
jobs:
test-api:
name: Python API Tests
runs-on: ubuntu-latest
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
defaults:
run:
working-directory: apps/api
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: pip install -e ".[dev]"
- name: Run tests
run: pytest -v || [ $? -eq 5 ]