Skip to content

Merge pull request #40 from siliconcompiler/fix-images #190

Merge pull request #40 from siliconcompiler/fix-images

Merge pull request #40 from siliconcompiler/fix-images #190

Workflow file for this run

name: CI
on:
# Runs on all pushes to branches
push:
branches:
- 'main'
# Runs on all PRs
pull_request:
# Manual Dispatch
workflow_dispatch:
jobs:
lint_python:
name: Lint Python Code
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Lint with Flake8
run: |
pip install --upgrade pip
pip install .[dev]
flake8 --statistics .
lint_tcl:
name: Lint TCL Code
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Lint with tclint
run: |
pip install --upgrade pip
pip install .[dev]
tclint .
check_paths:
name: Run CI
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Run tests
run: |
pip install --upgrade pip
pip install -e .[dev]
pytest