Skip to content

Implement mw.loadJsonData() #698

Implement mw.loadJsonData()

Implement mw.loadJsonData() #698

Workflow file for this run

name: test
on:
workflow_dispatch:
push:
branches:
- '*'
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
permissions:
contents: read
pull-requests: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
with:
submodules: "recursive"
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- run: |
python -m pip install -U pip
python -m pip install --use-pep517 '.[dev]'
- run: make test
env:
PYTHONWARNINGS: default