feature(qe-wasm): Prepare pipelines so we can build the query-engine-wasm with nightly rust features. #929
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "All crates: unit tests" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
paths-ignore: | |
- ".github/**" | |
- "!.github/workflows/test-unit-tests.yml" | |
- ".buildkite/**" | |
- "*.md" | |
- "LICENSE" | |
- "CODEOWNERS" | |
- "renovate.json" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- run: | | |
cargo test --workspace \ | |
--exclude=quaint \ | |
--exclude=query-engine \ | |
--exclude=query-engine-node-api \ | |
--exclude=black-box-tests \ | |
--exclude=query-engine-tests \ | |
--exclude=sql-migration-tests \ | |
--exclude=schema-engine-cli \ | |
--exclude=sql-schema-describer \ | |
--exclude=sql-introspection-tests \ | |
--exclude=mongodb-schema-connector | |
env: | |
CLICOLOR_FORCE: 1 |