From 605b150eea317979e61431928c826d5afb76c33a Mon Sep 17 00:00:00 2001 From: Ben Millwood Date: Thu, 23 May 2024 13:48:51 +0100 Subject: [PATCH] ChatGPT says this will give GPU info --- .github/workflows/checks.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index af84f53ab..d7a7fd372 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -35,6 +35,19 @@ permissions: contents: write jobs: + gpu-info: + runs-on: ${{ matrix.runs-on }} + strategy: + fail-fast: false + matrix: + runs-on: + - macos-13 + - macos-latest + steps: + - shell: bash + run: system_profiler SPDisplaysDataType + - shell: bash + run: system_profiler SPHardwareDataType compatibility-checks: name: Compatibility Checks runs-on: ${{ matrix.runs-on }}