clap

CLAP Audio Plugin API
Log | Files | Refs | README | LICENSE

commit 686b80a3f3970f26eba71c9b23f5f1f60fea163f
parent 819aae9f2308de598102f4ba796be150bcbb0e23
Author: Alexandre BIQUE <bique.alexandre@gmail.com>
Date:   Thu, 10 Jun 2021 11:52:58 +0200

Try this

Diffstat:
M.github/workflows/cmake.yml | 19+++++++++++++++++--
1 file changed, 17 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml @@ -16,8 +16,23 @@ jobs: # well on Windows or Mac. You can convert this to a matrix build if you need # cross-platform coverage. # See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix - runs-on: ubuntu-latest, windows-latest, macos-latest - stategy: matrix + name: ${{ matrix.config.name }} + runs-on: ${{ matrix.config.os }} + stategy: + matrix: + config: + - { + name: linux + os: ubuntu-latest + } + - { + name: windows + os: windows-latest + } + - { + name: linux + os: macos-latest + } steps: - uses: actions/checkout@v2