Skip to content

skip uninplemented integration #5

skip uninplemented integration

skip uninplemented integration #5

Workflow file for this run

name: Build&Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
integration:
strategy:
matrix:
# TODO: write an integration for windows too
os: [macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Build Release
run: cargo build -r --verbose
- name: Run integration
run: JSON_PARSER_EXECUTABLE=./target/release/rust-json-parser ./integration_tests/test_fixtures.sh