Skip to content

Commit 872a676

Browse files
committed
Add string-table check in github actions
This was formerly a Travis CI job. Setting it up using Github actions gives us a user interface which integrates into the rest of github better. This is a step towards having all jobs seup in Github actions and removing Travis.
1 parent 6463e78 commit 872a676

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/pull-request-checks.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,3 +164,10 @@ jobs:
164164
BASE_BRANCH: ${{ github.base_ref }}
165165
MERGE_BRANCH: ${{ github.ref }}
166166
run: ./.github/workflows/pull-request-check-cpplint.sh
167+
168+
check-string-table:
169+
runs-on: ubuntu-20.04
170+
steps:
171+
- uses: actions/checkout@v2
172+
- name: Check for unused irep ids
173+
run: ./scripts/string_table_check.sh

0 commit comments

Comments
 (0)