From dc93b0c35be15eb7cb7f670b6fe426e8f153efbd Mon Sep 17 00:00:00 2001 From: itsdevbear Date: Tue, 28 Nov 2023 17:36:32 -0500 Subject: [PATCH] mac runner --- .github/workflows/{ci.yml => lint.yml} | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) rename .github/workflows/{ci.yml => lint.yml} (83%) diff --git a/.github/workflows/ci.yml b/.github/workflows/lint.yml similarity index 83% rename from .github/workflows/ci.yml rename to .github/workflows/lint.yml index 6993e41..7ddb71a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/lint.yml @@ -1,6 +1,6 @@ -# This is the main CI workflow -name: ci +# This is the linting CI workflow +name: lint # This workflow is triggered on pull requests to the main branch on: @@ -14,7 +14,7 @@ jobs: # The build job build: # This job runs on the latest version of Ubuntu - runs-on: ubuntu-latest + runs-on: macos-latest steps: # Checkout the repository - uses: actions/checkout@v2 @@ -30,6 +30,3 @@ jobs: # Lint the code - name: Lint run: make lint - # Build the project - - name: Build - run: make build