Skip to content

Cleanup code, and allow to use graphql_parser_hive_fork instead of … #206

Cleanup code, and allow to use graphql_parser_hive_fork instead of …

Cleanup code, and allow to use graphql_parser_hive_fork instead of … #206

Workflow file for this run

name: ci
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Cache Rust
uses: Swatinem/rust-cache@v1
- name: Test Rust
run: |
# features=graphql_parser_fork
cargo test --features graphql_parser_fork --no-default-features
# features=graphql_parser
cargo test
- name: Build Rust
run: |
# features=graphql_parser_fork
cargo build --release --features graphql_parser_fork --no-default-features
# features=graphql_parser
cargo build --release