Skip to content

Use filename when referencing blob, not signed url #527

Use filename when referencing blob, not signed url

Use filename when referencing blob, not signed url #527

Workflow file for this run

name: go
on:
push:
pull_request:
jobs:
lint:
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: stembuild/go.mod
- name: Provide `StemcellAutomation.zip` for `go:embed` consumption in `assets` package
run: |
make stubbed-stemcell-automation-zip
working-directory: stembuild
- uses: golangci/golangci-lint-action@v9
with:
working-directory: stembuild
test:
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: stembuild/go.mod
- name: Provide `StemcellAutomation.zip` for `go:embed` consumption in `assets` package
run: |
make stubbed-stemcell-automation-zip
working-directory: stembuild
# skip specs for packager,ovftool because `ovftool` binary is required
- run: |
go run github.com/onsi/ginkgo/v2/ginkgo run -r --keep-going --randomize-all --randomize-suites --skip-package integration,iaas_cli,ovftool,packager
working-directory: stembuild