Skip to content

CI

CI #3

Workflow file for this run

name: CI
on:
schedule:
- cron: '0 10 * * 1-5'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install
shell: bash
run: |
apt update -y && apt install curl unzip -y
curl https://install.duckdb.org | sh
- name: Run a one-line script
run: |
res=$(duckdb/duckdb s3://test-wasm-carlo/meeting_selection.db -c "FROM roulette();")
echo $res