test-runner.py: Fix spelling mistake in test_list #1
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: Run tests | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- name: Install deps | |
run: | | |
python -m pip install --upgrade pip | |
pip install pyyaml pycodestyle python-magic black | |
- name: Linting | |
run: | | |
black --check . | |
./sanity-check.sh |