Update dependency tilt-dev/ctlptl to v0.8.38 #345
This file contains 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: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- 'main' | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version-file: go.mod | |
cache: true | |
- uses: aquaproj/[email protected] | |
with: | |
aqua_version: v2.2.1 | |
- run: make test | |
check-goreleaser-config: | |
name: Check goreleaser.yml | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version-file: go.mod | |
- uses: goreleaser/goreleaser-action@v4 | |
with: | |
version: latest | |
args: check -f .goreleaser.yml | |
tilt: | |
name: Run tilt ci | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version-file: go.mod | |
- uses: aquaproj/[email protected] | |
with: | |
aqua_version: v2.2.1 | |
- run: make start-dev | |
- run: tilt ci | |
dry-run: | |
name: Dry-run release | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: docker/setup-qemu-action@v2 | |
- uses: docker/setup-buildx-action@v2 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version-file: go.mod | |
- uses: aquaproj/[email protected] | |
with: | |
aqua_version: v2.2.1 | |
- name: Setup tag for goreleaser | |
run: | | |
echo "GORELEASER_CURRENT_TAG=$(git describe --tags --abbrev=0 --match "v*" || echo v0.0.0)" >> $GITHUB_ENV | |
- name: GoReleaser | |
uses: goreleaser/goreleaser-action@v4 | |
with: | |
version: latest | |
args: --snapshot --skip-publish --rm-dist |