Skip to content

Build main

Build main #480

Workflow file for this run

name: "Build"
run-name: "Build ${{ github.ref_name }}"
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: "0 9 * * *"
jobs:
build:
name: Build
env:
NGROK_AUTHTOKEN: ${{ secrets.NGROK_AUTHTOKEN }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: make install
- name: Test
run: make test