This repository was archived by the owner on May 20, 2025. It is now read-only.
Double timeout for building stembuild #292
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: go | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| lint: | |
| strategy: | |
| matrix: | |
| os: [windows-2019, ubuntu-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: go.mod | |
| - name: Provide `StemcellAutomation.zip` for `go:embed` consumption in `assets` package | |
| run: | | |
| make generate-fake-stemcell-automation | |
| - uses: golangci/golangci-lint-action@v8 | |
| test: | |
| strategy: | |
| matrix: | |
| os: [windows-2019, ubuntu-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: go.mod | |
| - name: Provide `StemcellAutomation.zip` for `go:embed` consumption in `assets` package | |
| run: | | |
| make generate-fake-stemcell-automation | |
| # skip specs for "packager", "ovftool" because "ovftool" be installed | |
| - run: | | |
| go run github.com/onsi/ginkgo/v2/ginkgo run -r --keep-going --randomize-all --randomize-suites --skip-package integration,iaas_cli,ovftool,packager |