build(deps): bump htmlparser to 0.2.1 #236
Workflow file for this run
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: mrml-python | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- '.github/workflows/mrml-python-main.yml' | |
- 'Cargo.lock' | |
- 'Cargo.toml' | |
- 'packages/mrml-core/**' | |
- 'packages/mrml-python/**' | |
pull_request: | |
paths: | |
- '.github/workflows/mrml-python-main.yml' | |
- 'Cargo.lock' | |
- 'Cargo.toml' | |
- 'packages/mrml-core/**' | |
- 'packages/mrml-python/**' | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
testing: | |
runs-on: ubuntu-latest | |
concurrency: | |
group: ${{ github.ref }}-mrml-python | |
cancel-in-progress: true | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: install cargo toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
profile: minimal | |
- name: install maturin | |
run: cargo install maturin --locked | |
- name: init python venv | |
run: | | |
python3 -m pip install --upgrade pip | |
python3 -m venv env | |
source env/bin/activate | |
python3 -m pip install pytest | |
maturin develop | |
python3 -m pytest | |
working-directory: packages/mrml-python |