Skip to content

chore(deps): bump actions/github-script from 6 to 7 #43

chore(deps): bump actions/github-script from 6 to 7

chore(deps): bump actions/github-script from 6 to 7 #43

Workflow file for this run

name: Automating build, tests and lambda packaging for Golang

Check failure on line 1 in .github/workflows/go.yaml

View workflow run for this annotation

GitHub Actions / Automating build, tests and lambda packaging for Golang

Invalid workflow file

The workflow is not valid. .github/workflows/go.yaml: (Line: 10, Col: 9, Idx: 145) - (Line: 10, Col: 10, Idx: 146): While parsing a tag, did not find expected tag URI.
on:
push:
branches: [ "main" ]
pull_request:
jobs:
build:
if: ! startsWith(github.head_ref, 'refs/heads/iac/')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21.1'
- name: Build
run: go build -C lambda -o build/go-serverless -v
# - name: Test
# run: go test -v lambda/...
# this step will be done on the IaC level
# - name: Zipping executable
# run: zip -jrm lambda/build/go-serverless.zip lambda/build/go-serverless