Skip to content

fix: Don't silence blocking task errors #221

fix: Don't silence blocking task errors

fix: Don't silence blocking task errors #221

Workflow file for this run

---
name: pr
on:
pull_request:
branches:
- main
- spiceai
jobs:
lint:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Install Protoc
uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- run: cargo clippy --all-features -- -D warnings
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
# Putting this into a GitHub Actions matrix will run a separate job per matrix item, whereas in theory
# this can re-use the existing build cache to go faster.
- name: Build without default features
run: cargo check --no-default-features
- name: Build with only duckdb
run: cargo check --no-default-features --features duckdb
- name: Build with only postgres
run: cargo check --no-default-features --features postgres
- name: Build with only sqlite
run: cargo check --no-default-features --features sqlite
- name: Build with only mysql
run: cargo check --no-default-features --features mysql
integration-test:
name: Integration Test
runs-on: ubuntu-latest
env:
PG_DOCKER_IMAGE: ghcr.io/cloudnative-pg/postgresql:16-bookworm
MYSQL_DOCKER_IMAGE: ghcr.io/mirrorshub/docker/mysql:8-debian
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Pull the Postgres/MySQL images
run: |
docker pull ${{ env.PG_DOCKER_IMAGE }}
docker pull ${{ env.MYSQL_DOCKER_IMAGE }}
- name: Run integration test
run: make test-integration