Skip to content

Update catalog-tree.md #621

Update catalog-tree.md

Update catalog-tree.md #621

Workflow file for this run

name: pep8
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# If python version is 3.10.7,error appear,solution refer to
# https://github.com/python/mypy/issues/13627
python: ["3.8", "3.9", "3.10.6"]
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install tox and any other packages
run: pip install tox
- name: Run tox
# Run tox using the version of Python in `PATH`
run: tox -e pep8