From 56e391395da068ef4d605385b2c2f4e800f14dc1 Mon Sep 17 00:00:00 2001 From: Bo-Chun Louis Chen <louistw@uab.edu> Date: Wed, 5 May 2021 22:04:43 -0500 Subject: [PATCH] Add github action for trailing space --- .github/workflows/trailing-space.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/trailing-space.yaml diff --git a/.github/workflows/trailing-space.yaml b/.github/workflows/trailing-space.yaml new file mode 100644 index 0000000..ad0efd8 --- /dev/null +++ b/.github/workflows/trailing-space.yaml @@ -0,0 +1,11 @@ +name: Find trailing space + +on: [push, pull_request] + +jobs: + example: + name: Find Trailing Space + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: harupy/find-trailing-whitespace@master -- GitLab