Skip to content

refact: make the topic configurable for AWSMessageQueue #420

refact: make the topic configurable for AWSMessageQueue

refact: make the topic configurable for AWSMessageQueue #420

Workflow file for this run

name: E2E Testing
on:
push:
branches:
- main
pull_request:
env:
POETRY_VERSION: "1.8.3"
jobs:
test:
runs-on: ubuntu-latest
strategy:
# Let the matrix finish to see if the failure was transient
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: ${{ env.POETRY_VERSION }}
- name: Install deps
shell: bash
run: poetry install --with dev
- name: Run All E2E Tests
env:
AWS_ACCESS_KEY_ID: ${{ AWS_ACCESS_KEY_ID }}

Check failure on line 37 in .github/workflows/e2e_test.yml

View workflow run for this annotation

GitHub Actions / E2E Testing

Invalid workflow file

The workflow is not valid. .github/workflows/e2e_test.yml (Line: 37, Col: 30): Unrecognized named-value: 'AWS_ACCESS_KEY_ID'. Located at position 1 within expression: AWS_ACCESS_KEY_ID
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
run: poetry run pytest e2e_tests/