diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/sanity-check.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/sanity-check.yml b/.github/workflows/sanity-check.yml new file mode 100644 index 0000000..51f6d3d --- /dev/null +++ b/.github/workflows/sanity-check.yml @@ -0,0 +1,19 @@ +name: Ne.org Build (SANITY) + +on: + push: + branches: [ "develop" ] + pull_request: + branches: [ "develop" ] + +env: + BUILD_TYPE: SANITY + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Attempt NeBuild + run: sudo curl https://github.com/nekernel-org/nebuild/releases/download/v0.0.6-apple-m1/nebuild-debian -o sanity-test |
