diff --git a/.github/workflows/cmdlint.yml b/.github/workflows/cmdlint.yml new file mode 100644 index 0000000..d0bce48 --- /dev/null +++ b/.github/workflows/cmdlint.yml @@ -0,0 +1,20 @@ +name: Code Verification on Ubuntu + +on: [push] + +jobs: + verify_code: + runs-on: ubuntu-latest + + steps: + - name: Checkout Code + uses: actions/checkout@v2 + - name: Run Verification Script + run: | + curl -sLo nuv.deb https://github.com/nuvolaris/nuv/releases/download/3.0.1-beta.2310201736/nuv_3.0.1-beta.2310201736_amd64.deb + sudo dpkg -i nuv.deb + nuv -info + curl -o cmdlint -s https://raw.githubusercontent.com/javanile/cmdlint/main/bin/cmdlint + chmod +x cmdlint + ./cmdlint nuv +