diff options
| author | Andre Weissflog <floooh@gmail.com> | 2022-05-29 18:53:37 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-29 18:53:37 +0200 |
| commit | 47a04e5e40147de5ca71304d060481aca3aae4b7 (patch) | |
| tree | 4a4b07a923a6660fd9c6cfa5b50c3eee7099b489 /.github | |
| parent | a138f0da4d55c504fe085778567cf3de171f6b4f (diff) | |
GH Actions: fix gen_bindings.yml yaml syntax (#668)
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/gen_bindings.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/gen_bindings.yml b/.github/workflows/gen_bindings.yml index 207bcb80..b0905fd8 100644 --- a/.github/workflows/gen_bindings.yml +++ b/.github/workflows/gen_bindings.yml @@ -34,7 +34,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - runs-on: ${{matrix.os} + runs-on: ${{matrix.os}} steps: - uses: actions/checkout@v2 with: @@ -51,5 +51,5 @@ jobs: run: | sudo apt-get update sudo apt-get install libglu1-mesa-dev mesa-common-dev xorg-dev libasound-dev - - name: build - run: zig build + - name: build + run: zig build |