diff --git a/.github/workflows/functional-test.yml b/.github/workflows/functional-test.yml index 27e9a63..027f3c7 100644 --- a/.github/workflows/functional-test.yml +++ b/.github/workflows/functional-test.yml @@ -1,25 +1,25 @@ name: 🧪 Functional Test - on: - push: - pull_request: - workflow_dispatch: +on: + push: + pull_request: + workflow_dispatch: - jobs: - functional: - name: Functional Test - runs-on: ubuntu-latest - steps: - - name: Set up Go - uses: actions/setup-go@v2 - with: - go-version: 1.17 +jobs: + functional: + name: Functional Test + runs-on: ubuntu-latest + steps: + - name: Set up Go + uses: actions/setup-go@v2 + with: + go-version: 1.17 - - name: Check out code - uses: actions/checkout@v2 + - name: Check out code + uses: actions/checkout@v2 - - name: Functional Tests - run: | - chmod +x run.sh - bash run.sh - working-directory: cmd/functional-test + - name: Functional Tests + run: | + chmod +x run.sh + bash run.sh + working-directory: cmd/functional-test