Skip to content

Commit

Permalink
Merge pull request #80 from siliconcompiler/gh-runner
Browse files Browse the repository at this point in the history
fix github runners
  • Loading branch information
gadfort authored Oct 14, 2024
2 parents b33adb4 + 6022aac commit 77ddc98
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ jobs:
uses: actions/checkout@v4
- name: Lint with Flake8
run: |
python3 -m venv .venv
. .venv/bin/activate
pip install --upgrade pip
pip install .[dev]
flake8 --statistics .
Expand All @@ -31,9 +34,17 @@ jobs:
uses: actions/checkout@v4
- name: Run tests
run: |
python3 -m venv .venv
. .venv/bin/activate
pip install --upgrade pip
pip install -e .[dev]
pytest
# change running directory
mkdir testrun
cd testrun
pytest $GITHUB_WORKSPACE
lint_verilog:
name: Lint Verilog Code
Expand Down

0 comments on commit 77ddc98

Please sign in to comment.