Skip to content

feat(corpus): improve test reporting and add regression tracking #81

feat(corpus): improve test reporting and add regression tracking

feat(corpus): improve test reporting and add regression tracking #81

Workflow file for this run

name: Test Suite
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize]
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- name: Run tests
run: cargo check
test:
name: Test Suite
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- uses: taiki-e/install-action@nextest
- name: Run tests
run: cargo nextest run --all-features -E 'not binary(sqlparser_corpus)'