bumped jsonpath-rust version to 0.4.0 #18
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: 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 |