Update tiltdev/tilt Docker tag to v0.33.18 #4662
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: Execute automated checks | |
on: | |
- push | |
jobs: | |
# https://github.com/golangci/golangci-lint-action#how-to-use | |
go-lint: | |
name: Lint go code | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout git repo | |
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4 | |
- name: Lint go code with golangci-lint | |
uses: golangci/golangci-lint-action@a4f60bb28d35aeee14e6880718e0c85ff1882e64 # v6 | |
with: | |
version: v1.58.2 | |
working-directory: backend | |
- name: Lint go code with golangci-lint | |
uses: golangci/golangci-lint-action@a4f60bb28d35aeee14e6880718e0c85ff1882e64 # v6 | |
with: | |
version: v1.58.2 | |
working-directory: notify | |
go-test: | |
name: Verify go tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout git repo | |
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4 | |
- name: Setup golang | |
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5 | |
with: | |
go-version: v1.21.3 | |
- name: Print go version | |
run: go version | |
- name: Execute go tests | |
run: GOPROXY=https://goproxy.io go test -v ./... | |
working-directory: backend | |
- name: Execute go tests | |
run: GOPROXY=https://goproxy.io go test -v ./... | |
working-directory: notify | |
tilt-ci-dev: | |
name: Verify tilt ci (development images) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Remove unused binarys | |
run: sudo rm -rf /usr/share/dotnet /usr/local/lib/android /opt/ghc /opt/hostedtoolcache/CodeQL | |
- name: Checkout git repo | |
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4 | |
- name: Create k8s Kind Cluster | |
uses: helm/kind-action@0025e74a8c7512023d06dc019c617aa3cf561fde # v1.10.0 | |
- name: Install tilt cli | |
uses: yokawasa/action-setup-kube-tools@5fe385031665158529decddddb51d6224422836e # v0.11.1 | |
with: | |
setup-tools: | | |
tilt | |
tilt: 'v0.33.14' | |
- name: Verify tilt ci | |
run: | | |
timeout 1200 tilt ci | |
tilt-ci-prod: | |
name: Verify tilt ci (production images) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Remove unused binarys | |
run: sudo rm -rf /usr/share/dotnet /usr/local/lib/android /opt/ghc /opt/hostedtoolcache/CodeQL | |
- name: Checkout git repo | |
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4 | |
- name: Create k8s Kind Cluster | |
uses: helm/kind-action@0025e74a8c7512023d06dc019c617aa3cf561fde # v1.10.0 | |
- name: Install tilt cli | |
uses: yokawasa/action-setup-kube-tools@5fe385031665158529decddddb51d6224422836e # v0.11.1 | |
with: | |
setup-tools: | | |
tilt | |
tilt: 'v0.33.14' | |
- name: Verify tilt ci | |
run: | | |
PROD=1 timeout 1200 tilt ci |