Skip to content

run tests on CI

run tests on CI #14

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:
- uses: actions/checkout@v3
# - name: Set up and build
# uses: ./.github/setupandbuild
# with:
# rust_target: ${{ matrix.target }}
# rust_profile: dev
- name: Run Tests
uses: ./.github/test
with:
binary: output_dir/pg2parquet${{ matrix.target == 'x86_64-pc-windows-gnu' && '.exe' || '' }}