From 76aec98de7897e40c670f3915e00c4fad3f6ed0f Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sat, 18 May 2024 04:34:35 -0500 Subject: [PATCH] ci: add `Lint` stage --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index efb8a6b..b0bc5af 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,5 +9,8 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Run tests + - name: Run Lint + run: make lint + + - name: Run Tests run: make test