Added matrix for feature branch to test multiple OSes. #65
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |