Skip to content

Commit

Permalink
[FIX] yaml syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
mathdugre committed Jun 17, 2021
1 parent 5f171e5 commit 0d3e5a8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/sea-tests.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: Tests

on:
push
on:
push:

workflow_dispatch:
inputs:
debug_enabled:
description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)'
required: false
default: false
default: "false"

jobs:
install-docker:
Expand All @@ -29,7 +29,7 @@ jobs:
- run: docker run --rm -v $PWD:$PWD -w $PWD imagetest:${{ matrix.os-name }} bats tests/tests.bats
- run: docker run --rm -v $PWD:$PWD -w $PWD -e SEA_HOME=$PWD -e LD_PRELOAD=$PWD/build/sea.so imagetest:${{ matrix.os-name }} tests/test_custom
- name: setup tmate session
if: ${{ failure() && github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled }}
if: ${{ failure() && github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled == 'true' }}
uses: mxschmitt/action-tmate@v3


0 comments on commit 0d3e5a8

Please sign in to comment.