Skip to content

Update datamatrix.py #8

Update datamatrix.py

Update datamatrix.py #8

Workflow file for this run

name: tox
on:
pull_request: # PR into master (=release)
branches:
- master
pull_request_target: # PR (from fork) into develop.
branches: # Uses workflow defined in base, not in fork.
- develop
workflow_dispatch: # to trigger workflow manually
jobs:
tox_on_ubuntu:
runs-on: ubuntu-20.04
strategy:
matrix:
python: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: install tox
run: pip install tox
- name: run tox
# Run tox using the version of Python in `PATH`
run: tox -e py