-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add workflow to run integrity_check.sh
- Loading branch information
1 parent
a603a2b
commit b82a192
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: NIC Integrity | ||
|
||
on: | ||
push: | ||
|
||
jobs: | ||
check: | ||
runs-on: ubuntu-latest | ||
env: | ||
THEOS: ${{ github.workspace }}/theos | ||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
path: templates | ||
|
||
- name: Checkout theos/theos | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: theos/theos | ||
submodules: recursive | ||
path: ${{ env.THEOS }} | ||
|
||
- name: Check | ||
run: | | ||
templates/integrity_check.sh |