Update README.md (#704) #1925
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: Polyglot Piranha | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build_and_test: | |
name: Polyglot Piranha Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Piranha sources | |
uses: actions/checkout@v2 | |
- name: Install stable toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
components: rustfmt | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- name: Run pre-commit | |
run : | | |
python -m venv .env | |
source .env/bin/activate | |
pip install pre-commit | |
cargo install taplo-cli --locked | |
pre-commit run --all-files | |
- name: Run unit and integration tests | |
run: cargo build && cargo test -- --include-ignored | |
- name: Create virtualenv and install dependencies | |
run: | | |
python -m venv .env | |
source .env/bin/activate | |
pip install maturin pytest | |
- name: Run Python tests | |
run: | | |
source .env/bin/activate | |
pip install -r experimental/requirements.txt | |
maturin develop | |
pytest tests/tests.py | |
pytest -s -rx . |