Skip to content

Merge pull request #2 from JamesJJ/runtime_provided.al2 #28

Merge pull request #2 from JamesJJ/runtime_provided.al2

Merge pull request #2 from JamesJJ/runtime_provided.al2 #28

Workflow file for this run

---
name: Go
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21
- name: Format Check
run: cd function && if [ $(gofmt -l -s . | grep -E -v '^vendor/' | tee /tmp/gofmt.txt
| wc -l) -ne 0 ]; then echo "fmt failed:"; cat /tmp/gofmt.txt ; exit 1;
fi
- name: Build
run: cd function && go build -v -tags lambda.norpc ./...
- name: Test
run: cd function && go test -v -tags lambda.norpc -covermode="count" -coverprofile="/tmp/coverage.out"
- name: Coverage Report
run: cd function && go tool cover -func="/tmp/coverage.out"