Skip to content

Add a method to subscribe SQS Queue to SNS Topic #505

Add a method to subscribe SQS Queue to SNS Topic

Add a method to subscribe SQS Queue to SNS Topic #505

Workflow file for this run

name: build
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install Tox and any other packages
run: |
python -m pip install -U pip
python -m pip install tox
- name: Run Tox
run: tox
env:
TOXENV: py${{ matrix.python-version}}-cov-codecov
security:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install Tox and any other packages
run: |
python -m pip install -U pip
python -m pip install tox
- name: Run Tox
run: tox
env:
TOXENV: check
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.11
- uses: pre-commit/[email protected]