Skip to content

Added matrix for feature branch to test multiple OSes. #65

Added matrix for feature branch to test multiple OSes.

Added matrix for feature branch to test multiple OSes. #65

Workflow file for this run

name: feature
on:
push:
branches:
- feature/*
pull_request:
branches:
- feature/*
jobs:
build:
name: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-2019, ubuntu-latest, macos-11]
runs-on: ${{ matrix.os }}
timeout-minutes: 60
steps:
# Checkout the code.
- name: checkout # is needed to read the files on the root folder of the repo
uses: actions/checkout@v4
# Use the build action.
- uses: ./.github/actions/build
# Use the test action.
- uses: ./.github/actions/test