diff options
author | Nikias Bassen | 2019-12-09 01:14:49 +0100 |
---|---|---|
committer | Nikias Bassen | 2019-12-09 01:14:49 +0100 |
commit | 3763b84509f0d3e80727f26d427c07341c295e03 (patch) | |
tree | 8ef8c20e913fb3fb470ef2f4c05840bbc5c1d180 | |
parent | a0297063da7ea53de5bd46f0413b581924a9526a (diff) | |
download | libplist-3763b84509f0d3e80727f26d427c07341c295e03.tar.gz libplist-3763b84509f0d3e80727f26d427c07341c295e03.tar.bz2 |
[github actions] Fix workflow
-rw-r--r-- | .github/workflows/build.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2ef481f..c11d391 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,7 +4,10 @@ on: [push] jobs: build: - runs-on: [ubuntu-latest, macos-latest] + strategy: + matrix: + platform: [ubuntu-latest, macos-latest] + runs-on: ${{ matrix.platform }} steps: - uses: actions/checkout@v1 - name: autogen |