Skip to content

Nightly

Nightly #1376

Workflow file for this run

name: Nightly
on:
workflow_dispatch:
schedule:
- cron: '0 2 * * *'
jobs:
nightly:
name: "Python: ${{ matrix.python-version }}
CrateDB: ${{ matrix.cratedb-version }}
on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-22.04']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
cratedb-version: ['nightly']
fail-fast: false
env:
CRATEDB_VERSION: ${{ matrix.cratedb-version }}
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Set up uv
uses: astral-sh/setup-uv@v6
with:
cache-dependency-glob: |
setup.py
cache-suffix: ${{ matrix.python-version }}
enable-cache: true
version: "latest"
- name: Invoke tests
run: |
# Propagate build matrix information.
./devtools/setup_ci.sh
# Bootstrap environment.
source bootstrap.sh
# Report about the test matrix slot.
echo "Invoking tests with CrateDB ${CRATEDB_VERSION}"
# Run linter.
poe lint
# Run tests.
bin/test -vvv