diff --git a/.github/workflows/ci-bats-tests.yaml b/.github/workflows/ci-bats-tests.yaml index 5f7228162e..5a38e36eb1 100644 --- a/.github/workflows/ci-bats-tests.yaml +++ b/.github/workflows/ci-bats-tests.yaml @@ -13,6 +13,12 @@ jobs: matrix: os: [ ubuntu-latest, macos-latest ] steps: + - name: Configure AWS Credentials + uses: aws-actions/configure-aws-credentials@v1 + with: + aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} + aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + aws-region: us-west-2 - name: Setup Go 1.x uses: actions/setup-go@v2 with: @@ -50,6 +56,8 @@ jobs: run: | dolt config --global --add user.name 'Liquidata Actions' dolt config --global --add user.email 'actions@liquidata.co' + - name: Check expect + run: expect -v - run: | bats --tap . working-directory: ./bats