Skip to content

Update README to include IAM policy details for SES stats (#310) #221

Update README to include IAM policy details for SES stats (#310)

Update README to include IAM policy details for SES stats (#310) #221

Workflow file for this run

name: Quality assurance
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install required packages
run: pip install ruff
- name: Run linter "Ruff"
run: ruff .
build:
name: Python ${{ matrix.python-version }}, django ${{ matrix.django-version }}
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
django-version: [22, 32, 40, 41, 42]
exclude:
- python-version: "3.12"
django-version: 22
steps:
- uses: actions/checkout@v4
- name: setup python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: pip install tox
- name: Run Tests
env:
TOXENV: django${{ matrix.django-version }}
run: tox