shithub: opus

Download patch

ref: 62fcd556c8e5f9d3fc32b214993905d181693bde
parent: 8760490d64d31ecaa73cb3e26903651cf798fa0a
author: Marcus Asteborg <xnorpx@outlook.com>
date: Sat Jun 17 05:11:37 EDT 2023

Repo CI for Github actions

--- /dev/null
+++ b/.github/workflows/repository.yml
@@ -1,0 +1,16 @@
+name: Repository
+
+on: [push, pull_request]
+
+jobs:
+  CheckTrailingWhiteSpaces:
+    name: Check trailing white spaces
+    runs-on: ubuntu-latest
+    steps:
+      - uses: actions/checkout@v3
+        with:
+          fetch-depth: 0
+          submodules: recursive
+      - name: Check Whitespaces
+        run: |
+          git diff-tree --check origin/opus-ng HEAD
--