Skip to content

Nightly Build

Nightly Build #4

Workflow file for this run

# Run check and build of the lib using the Bitcraze builder docker image
name: Nightly Build
on:
workflow_dispatch:
schedule:
- cron: '0 2 * * *'
jobs:
build-and-test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, lab-mac, windows-latest]
python-version: ["3.10", "3.11", "3.12", "3.13"]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build pre-commit
- name: Build
run: ./tools/build/bdist
- name: Test
run: ./tools/build/test
- name: Verify
run: ./tools/build/verify
- name: Build docs
run: ./tools/build-docs/build-docs