From 206abc366ffda1cf8c4766a1cabd21b981572d32 Mon Sep 17 00:00:00 2001 From: sangeeths03 Date: Mon, 7 Apr 2025 14:43:12 +0530 Subject: [PATCH] Create testos.yml --- .github/workflows/testos.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/testos.yml diff --git a/.github/workflows/testos.yml b/.github/workflows/testos.yml new file mode 100644 index 00000000..dffbd1e5 --- /dev/null +++ b/.github/workflows/testos.yml @@ -0,0 +1,27 @@ +name: macOS Version Check + +on: + workflow_dispatch: + +jobs: + benchmark-memory-speed: + name: Test macOS Version and Architecture + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: [macos-13, macos-14, macos-15] + + steps: + - name: Checkout Code + uses: actions/checkout@v2 + + - name: Display macOS Version + run: | + echo "Running on ${{ matrix.os }} runner" + sw_vers + + - name: Display Architecture + run: | + echo "Architecture:" + uname -m