Skip to content

Commit

Permalink
Add workflow to run integrity_check.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
leptos-null committed Jun 19, 2024
1 parent a603a2b commit b82a192
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/nic-integrity.yml
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

0 comments on commit b82a192

Please sign in to comment.