From 325dc4073f34f79cf5909e8974171170675b903a Mon Sep 17 00:00:00 2001 From: Lucas-Carmo Date: Sun, 29 Sep 2024 12:44:19 -0600 Subject: [PATCH] Fix: Including MacOS and Windows to CI_RAFT that were removed by mistake I test github actions on a separate fork with Ubuntu only, and I forgot to add MacOS and Windows back to CI_RAFT.yml before pushing. Putting them back. --- .github/workflows/CI_RAFT.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI_RAFT.yml b/.github/workflows/CI_RAFT.yml index 8b39cc5..15c6c54 100644 --- a/.github/workflows/CI_RAFT.yml +++ b/.github/workflows/CI_RAFT.yml @@ -15,8 +15,8 @@ jobs: strategy: fail-fast: false #true matrix: - os: ["ubuntu-latest"] - python-version: ["3.11"] + os: ["ubuntu-latest", "macOS-latest", "windows-latest"] + python-version: ["3.10", "3.11"] steps: