Skip to content

Build and Deploy

Build and Deploy #132

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- main
schedule:
- cron: "0 10 * * 1"
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Install dependencies
run: uv sync --no-dev --frozen
- name: Run
run: make run