diff --git a/.github/workflows/check-lines.yml b/.github/workflows/check-lines.yml new file mode 100644 index 0000000..b951628 --- /dev/null +++ b/.github/workflows/check-lines.yml @@ -0,0 +1,20 @@ +name: Check Lines Script + +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + run-check-lines: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Run check-lines.sh script + run: ./tests/check-lines.sh \ No newline at end of file diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index efbddd0..0000000 --- a/.travis.yml +++ /dev/null @@ -1,3 +0,0 @@ -before_install: chmod +x tests/check-lines.sh -install: true -script: ./tests/check-lines.sh diff --git a/tests/check-lines.sh b/tests/check-lines.sh old mode 100644 new mode 100755