Skip to content

fix: deployment rolling update not triggered when deployed-ui-apps ch… #429

fix: deployment rolling update not triggered when deployed-ui-apps ch…

fix: deployment rolling update not triggered when deployed-ui-apps ch… #429

Workflow file for this run

name: Tests
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
env:
GO_VERSION: "1.24.3"
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go with private modules
uses: ./.github/actions/setup-go-private
with:
go-version: ${{ env.GO_VERSION }}
gh-token: ${{ secrets.GH_PAT }}
- name: Install dependencies
run: go mod download
- name: Run tests
run: make test
build:
uses: ./.github/workflows/docker.yml
with:
push-image: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
secrets:
GH_PAT: ${{ secrets.GH_PAT }}