Skip to content

Commit 0bee15b

Browse files
committed
Add linting step to quality assurance workflow
Signed-off-by: James Bradlee <[email protected]>
1 parent 051b8c9 commit 0bee15b

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/quality-assurance.yaml

+11
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,15 @@ jobs:
1717
run: gradle test
1818
env:
1919
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20+
lint:
21+
runs-on: ubuntu-latest
22+
steps:
23+
- name: Checkout
24+
uses: actions/checkout@v4
25+
- run: |
26+
if [[ "${{ github.event_name }}" == "push" ]]; then
27+
echo "This is a push to a branch"
28+
elif [[ "${{ github.event_name }}" == "pull_request" ]]; then
29+
echo "This is a push to a pull request"
30+
fi
2031

0 commit comments

Comments
 (0)