Skip to content

Commit 132fab0

Browse files
🩹 [Patch]: Add macOS and Windows tests (#5)
## Description This pull request includes changes to the `.github/workflows/Action-Test.yml` file to enhance the testing strategy by incorporating a matrix for operating systems. Improvements to testing strategy: * [`.github/workflows/Action-Test.yml`](diffhunk://#diff-a12ae5c885b0673c0ff6f70c2670886907590d624626e07da4c52e01aeaf56a4R21-R25): Added a matrix strategy to test on multiple operating systems (`ubuntu-latest`, `windows-latest`, `macos-latest`) and updated the `runs-on` field to use the matrix variable. ## Type of change <!-- Use the check-boxes [x] on the options that are relevant. --> - [ ] 📖 [Docs] - [ ] 🪲 [Fix] - [x] 🩹 [Patch] - [ ] ⚠️ [Security fix] - [ ] 🚀 [Feature] - [ ] 🌟 [Breaking change] ## Checklist <!-- Use the check-boxes [x] on the options that are relevant. --> - [x] I have performed a self-review of my own code - [x] I have commented my code, particularly in hard-to-understand areas
1 parent 1e3973f commit 132fab0

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/Action-Test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,11 @@ permissions:
1818

1919
jobs:
2020
ActionTestBasic:
21+
strategy:
22+
matrix:
23+
os: [ubuntu-latest, windows-latest, macos-latest]
2124
name: Action-Test - [Basic]
22-
runs-on: ubuntu-latest
25+
runs-on: ${{ matrix.os }}
2326
steps:
2427
# Need to check out as part of the test, as its a local action
2528
- name: Checkout repo

0 commit comments

Comments
 (0)