Skip to content

Add GOMEMLIMIT as env variable in Terraform for serverless implementation of Buz #72

Add GOMEMLIMIT as env variable in Terraform for serverless implementation of Buz

Add GOMEMLIMIT as env variable in Terraform for serverless implementation of Buz #72

Workflow file for this run

name: Test
on:
push:
tags:
- v*
branches:
- main
pull_request:
permissions:
contents: read
jobs:
build:
name: build & test
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: 1.19
- uses: actions/checkout@v3
- name: determine go cache paths
id: go-cache-path
run: |
echo "::set-output name=build::$(go env GOCACHE)"
echo "::set-output name=module::$(go env GOMODCACHE)"
shell: bash
- name: setup go cache
uses: actions/cache@v3
with:
path: |
${{ steps.go-cache-path.outputs.build }}
${{ steps.go-cache-path.outputs.module }}
key: ${{ runner.os }}-go-buz-cache-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-buz-cache-
- name: build
run: make build
- name: test
run: make test