diff --git a/.github/workflows/plugin-lint.yaml b/.github/workflows/plugin-lint.yaml new file mode 100644 index 0000000..b5bee61 --- /dev/null +++ b/.github/workflows/plugin-lint.yaml @@ -0,0 +1,21 @@ +name: Plugin Lint + +on: + pull_request: + + push: + branches: + - main + +jobs: + tests: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Lint + run: docker compose run --rm lint + + - name: Test + run: docker compose run --rm tests