Skip to content

bumped jsonpath-rust version to 0.4.0 #19

bumped jsonpath-rust version to 0.4.0

bumped jsonpath-rust version to 0.4.0 #19

Workflow file for this run

name: Cross-platform sanity check
on: [ push ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macos-latest ]
python-version: [ "3.8", "3.9", "3.10", "3.11", "pypy3.9", "pypy3.10" ]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Create virtualenv and install package
run: |
python -m venv env
source env/bin/activate
pip install --upgrade pip setuptools wheel maturin pytest virtualenv
maturin develop --release
- name: Test
run: |
source env/bin/activate
python -m pytest