From 2341caadbb4b8ecc05225ecdbe8c0cadf1e2411a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steven!=20Ragnar=C3=B6k?= Date: Tue, 9 Jul 2024 14:31:50 -0700 Subject: [PATCH] Add separate linter job. --- .github/workflows/ci.yaml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 86862be..fbd7e89 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -7,8 +7,20 @@ on: branches: [master] jobs: - CI: + lint: strategy: + fail-fast: false + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v4 + - name: Set up Earthly + uses: earthly/actions-setup@v1 + - name: Lint + run: | + earthly --ci +lint + build: + strategy: + fail-fast: false matrix: os: - "ubuntu:focal"