Skip to content

Bump to version v0.31.0 #264

Bump to version v0.31.0

Bump to version v0.31.0 #264

Workflow file for this run

name: Lints
# This is in a separate job because we have shell scripts scattered across all our targets,
# *and* some of them have common dependencies.
on:
push:
branches: [ main ]
paths: ['**/*.sh', '**/*.py']
pull_request:
paths: ['**/*.sh', '**/*.py']
jobs:
lint:
name: Check helper scripts
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: pip3 install flake8 mypy
- run: shellcheck **/*.sh
- run: python3 -m flake8 .
# Only include typed Python scripts here.
- run: python3 -m mypy bin/fetch_archive.py --python-version 3.6 --strict