From 47226f8d1ec0d1fa8566c4c69c186a5da17465d3 Mon Sep 17 00:00:00 2001 From: Phil Tyler Date: Thu, 10 Aug 2023 14:07:51 -0700 Subject: [PATCH] New Lint & Test Workflow validating README.md (#259) --- .github/workflows/lint-test.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/lint-test.yml diff --git a/.github/workflows/lint-test.yml b/.github/workflows/lint-test.yml new file mode 100644 index 00000000..539700e0 --- /dev/null +++ b/.github/workflows/lint-test.yml @@ -0,0 +1,10 @@ +name: Linting & Test +on: [push] +jobs: + validate-readme-spacing: + name: Validate README Spacing + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - uses: pantheon-systems/validate-readme-spacing@v1 \ No newline at end of file