From ef2d868c8af36fee1b4d8e69b981d8f20c7c22d8 Mon Sep 17 00:00:00 2001 From: sambit-giri Date: Tue, 13 Aug 2024 11:09:43 +0530 Subject: [PATCH] testing fix for actions --- .github/workflows/ci.yml | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index da24d7f..963acef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,20 +1,11 @@ -name: CI - -on: - push: - branches: - - master - pull_request: - branches: - - master - jobs: test: - runs-on: ubuntu-latest - strategy: matrix: - python-version: [3.8, 3.9, 3.10] + os: [ubuntu-latest, macos-latest] # Add macOS to the matrix + python-version: [3.10, 3.11, 3.12] + + runs-on: ${{ matrix.os }} steps: - name: Check out repository code