Nightly #1187
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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-latest'] | |
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 ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' | |
cache-dependency-path: 'setup.py' | |
- name: Install uv | |
uses: yezz123/setup-uv@v4 | |
- 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 |