diff options
author | siddharth ravikumar <s@ricketyspace.net> | 2024-09-20 18:30:31 -0400 |
---|---|---|
committer | siddharth ravikumar <s@ricketyspace.net> | 2024-09-20 18:30:31 -0400 |
commit | 2ea9f391a5f4c2c83ada99463e6b1e151e6d75fa (patch) | |
tree | 3de4c44b2286c83f736dfee6a5c11f73ee6c1381 /.github/workflows/tester.yml | |
parent | dadb9ee39d0a8b2a11644ec04654451e69d9ccf5 (diff) |
.github/workflows/tester.yml: put matrix under strategy
Diffstat (limited to '.github/workflows/tester.yml')
-rw-r--r-- | .github/workflows/tester.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/tester.yml b/.github/workflows/tester.yml index 7f43f62..4964f03 100644 --- a/.github/workflows/tester.yml +++ b/.github/workflows/tester.yml @@ -4,8 +4,9 @@ on: push jobs: test: name: test fern - matrix: - os: [ubuntu-latest, macos-latest] + strategy: + matrix: + os: [ubuntu-latest, macos-latest] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 |