Skip to content

Bump pypa/gh-action-pypi-publish from 1.10.3 to 1.12.2 in the actions group across 1 directory #310

Bump pypa/gh-action-pypi-publish from 1.10.3 to 1.12.2 in the actions group across 1 directory

Bump pypa/gh-action-pypi-publish from 1.10.3 to 1.12.2 in the actions group across 1 directory #310

Workflow file for this run

# Copyright (c) 2024 Zero ASIC Corporation
# This code is licensed under Apache License 2.0 (see LICENSE for details)
# modified from https://github.com/siliconcompiler/siliconcompiler/blob/main/.github/workflows/lint.yml
name: Lint
on:
pull_request:
workflow_dispatch:
push:
branches:
- main
jobs:
lint_python:
name: Lint Python Code
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Install Requirements
run: |
python3 -m pip install --upgrade pip
pip install .[test]
- name: Lint with Flake8
run: flake8 --statistics .