Skip to content

chore(deps): bump github.com/flanksource/gomplate/v3 from 3.20.3 to 3.20.9 #750

chore(deps): bump github.com/flanksource/gomplate/v3 from 3.20.3 to 3.20.9

chore(deps): bump github.com/flanksource/gomplate/v3 from 3.20.3 to 3.20.9 #750

Workflow file for this run

on:
pull_request:
name: Test
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: 1.20.x
- name: Checkout code
uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: |
~/go/pkg/mod
~/.cache/go-build
.bin
key: cache-${{ hashFiles('**/go.sum') }}-${{ hashFiles('.bin/*') }}
restore-keys: |
cache-
- name: Test
run: make test
- name: Publish Unit Test Results
uses: EnricoMi/publish-unit-test-result-action@v1
if: always() && github.event.repository.fork == 'false'
with:
files: test/test-results.xml
check_name: E2E - ${{matrix.suite}}