From 43eedbcc8cecb13a2ad8c4af7eecb452c14a09e5 Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Sun, 2 Apr 2023 12:23:46 -0400 Subject: [PATCH] ci: only run linting on Ubuntu (#5216) --- .github/workflows/pull-request.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index caa2be8ee7eb9..bbf4a7b25cda7 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -9,13 +9,8 @@ env: jobs: lint: - name: Lint on ${{ matrix.os }} - runs-on: ${{ matrix.os }} - - strategy: - fail-fast: false - matrix: - os: [ubuntu-latest, windows-latest] + name: Lint + runs-on: ubuntu-latest steps: - name: Git Checkout