all repos — hex @ 72b7caa5f84fbcfe0609c98c0c5602f5c917da94

A tiny, minimalist, slightly-esoteric concatenative programming lannguage.

Updated CI to test on all platform.
h3rald h3rald@h3rald.com
Sat, 07 Dec 2024 19:22:15 +0100
commit

72b7caa5f84fbcfe0609c98c0c5602f5c917da94

parent

7c81e80fc10f5b1a59ec28c0ace26e6c2cc4ed5d

1 files changed, 9 insertions(+), 3 deletions(-)

jump to
M .github/workflows/ci.yml.github/workflows/ci.yml

@@ -15,8 +15,14 @@ # A workflow run is made up of one or more jobs that can run sequentially or in parallel

jobs: # This workflow contains a single job called "ci" ci: - # The type of runner that the job will run on - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: + - ubuntu-latest + - macos-latest + - windows-latest + - macos-13 # Steps represent a sequence of tasks that will be executed as part of the job steps:

@@ -27,4 +33,4 @@ - name: Build

run: make - name: Test - run: make test+ run: make test