Skip to content

Commit

Permalink
ci: fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMightyDuckOfDoom committed May 8, 2024
1 parent df2971d commit 23bc82b
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,14 @@ jobs:
- uses: actions/checkout@v4
- name: Run jsonlint
run: make jsonlint

Check failure on line 44 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / yamllint

44:1 [trailing-spaces] trailing spaces
veriloglint:
runs-on: self-hosted
needs: setup
steps:
- uses: actions/checkout@v4
- name: Run veriloglint
run: make veriloglint

basic_tests:
runs-on: self-hosted
Expand All @@ -56,13 +64,17 @@ jobs:
needs: basic_tests
steps:
- uses: actions/checkout@v4
- name: Run tcllint after gen_pdk
run: make tcllint
- name: Run gen_pdk
run: make gen_pdk
- name: Run tclint after gen_pdk
run: make tclint

pdk_veriloglint:
runs-on: self-hosted
needs: basic_tests
steps:
- uses: actions/checkout@v4
- name: Run gen_pdk
run: make gen_pdk
- name: Run veriloglint after gen_pdk
run: make veriloglint

0 comments on commit 23bc82b

Please sign in to comment.