Skip to content

Introducing Harness Testing #11

Introducing Harness Testing

Introducing Harness Testing #11

Workflow file for this run

name: dockerized-test
permissions:
contents: read
on:
push:
branches: [ main ]
pull_request:
branches: [ '*' ]
workflow_dispatch:
jobs:
dockerized-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Build the image
run: docker build . -t local/test -f Dockerfile.rie
- name: Run tests
uses: aws/containerized-test-runner-for-aws-lambda@main
with:
suiteFileArray: '["./test/dockerized/*.json"]'
dockerImageName: 'local/test'