Skip to content

Make mtl parsing more robust using regex (#34) #13

Make mtl parsing more robust using regex (#34)

Make mtl parsing more robust using regex (#34) #13

Workflow file for this run

name: CI
on:
push:
paths-ignore:
- "**/README.md"
pull_request:
paths-ignore:
- "**/README.md"
jobs:
run-obj2mjcf-tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- name: Checkout obj2mjcf
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
pip install -e ".[test]"
- name: Run tests
run: |
pytest