Skip to content

Workflow file for this run

name: test
on:
pull_request:
paths:
- provider/**
- examples/**
- .github/workflows/**
env:
MZ_HOST: localhost
MZ_USER: mz_system
MZ_SSLMODE: disable
MZ_PORT: 6877
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
test:
name: acceptance tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: 1.21.x
- uses: jaxxstorm/[email protected]
with:
repo: pulumi/pulumictl
- run: run: echo "GORELEASER_CURRENT_TAG=v$(pulumictl get version --language generic)" >> $GITHUB_ENV

Check failure on line 31 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

You have an error in your yaml syntax on line 31
- uses: goreleaser/goreleaser-action@v2
with:
version: latest
args: -p 3 release --rm-dist
- run: make build_python
- run: docker-compose -f examples/docker-compose.yml up -d --build
- run: make test
- run: docker compose -f examples/docker-compose.yml down