Skip to content

Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #3875

Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows

Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #3875

Workflow file for this run

name: Lint
on:
# Runs on all pushes to branches
push:
# Runs on all PRs
pull_request:
# Manual Dispatch
workflow_dispatch:
jobs:
lint_python:
name: Lint Python Code
runs-on: ubuntu-20.04
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Install Linters
run: python3 -m pip install -r ./requirements_lint.txt
- name: Ensure Black Formatting
run: black --check .
- name: Lint with Flake8
run: flake8 .