Skip to content

run tests on CI

run tests on CI #5

Workflow file for this run

name: Tests
on:
workflow_dispatch:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
tests:
name: Integration Tests
runs-on: ${{ matrix.os }}
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
target: [x86_64-unknown-linux-gnu, x86_64-unknown-linux-musl]
env:
TODO: true
steps:
- run: find .github
shell: bash
- name: Set up and build
uses: ./.github/setupandbuild
with:
rust_target: ${{ matrix.target }}
- name: Run Tests
uses: ./.github/test
with:
binary: output_dir/pg2parquet${{ matrix.target == 'x86_64-pc-windows-gnu' && '.exe' || '' }}