Skip to content

Run tests for commit - Support running restored lambda functions #24

Run tests for commit - Support running restored lambda functions

Run tests for commit - Support running restored lambda functions #24

Workflow file for this run

name: Test
run-name: |
Run tests for ${{
(github.event_name == 'push' && format('commit - {0}', github.event.head_commit.message)) ||
(github.event_name == 'pull_request' && format('PR #{0} - {1}', github.event.number, github.event.pull_request.title)) ||
format('{0} (manually triggered)', github.ref_name)
}}
permissions:
contents: read
on:
push:
branches:
- "main"
pull_request:
workflow_dispatch:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: bash test.sh
- run: docker compose logs
if: ${{ failure() }}