Skip to content

#114 - Output of the duplicated test it's not understandable #662

#114 - Output of the duplicated test it's not understandable

#114 - Output of the duplicated test it's not understandable #662

Workflow file for this run

# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
on:
pull_request:
push:
branches:
- main
name: Tests
jobs:
tests:
name: "Run tests on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ 'ubuntu-latest', 'macos-latest', 'windows-latest']
include:
- os: windows-latest
script_name: 'bash -c "./bashunit tests/**/*_test.sh"'
- os: ubuntu-latest
script_name: 'make test'
- os: macos-latest
script_name: 'make test'
steps:
- uses: actions/checkout@v3
- name: "Tests"
run: ${{ matrix.script_name }}