Fixing the tuple array parsing. Now type=eval is included #141
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: Lint Moonworm | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python-version: [3.6, 3.7, 3.8, 3.9] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Upgrade pip | |
run: pip install -U pip | |
- name: Install dev dependencies | |
run: pip install -e .[dev] | |
- name: Isort imports check | |
run: isort --check moonworm/ | |
- name: Black syntax check | |
run: black --check moonworm/ | |