Skip to content

build

build #45

Workflow file for this run

---
name: build
# Actions that take place on all branches
# -----------------
# Control variables (GitHub Secrets)
# -----------------
#
# (n/a)
#
# -----------
# Environment (GitHub Environments)
# -----------
#
# Environment (n/a)
on:
push:
branches:
- '**'
schedule:
# Build daily at 6:02am...
- cron: '2 6 * * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -r build-requirements.txt
pip install -r requirements.txt
- name: Lint
run: |
pre-commit run --all-files