Skip to content

feat(lambda): add AWS Lambda capability and example #52

feat(lambda): add AWS Lambda capability and example

feat(lambda): add AWS Lambda capability and example #52

Workflow file for this run

name: pull-request
on:
pull_request:
types:
- 'opened'
- 'synchronize'
branches:
- 'main'
push:
branches:
- '*'
jobs:
integration_checks:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup golang
uses: actions/setup-go@v4
with:
go-version: stable
- name: Code linting
run: make lint
- name: Static analysis
run: make sast
- name: Module checks
run: make modcheck
- name: Tests and coverage
run: make test
env:
COVERAGE_MIN: ${{ vars.COVERAGE_MIN }}