Nightly #1184
Workflow file for this run
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'] | |
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. | |
flake8 src bin | |
# Run tests. | |
bin/test -vvv |