Skip to content

Send email notifications to internal members for new volunteer applications #360

Send email notifications to internal members for new volunteer applications

Send email notifications to internal members for new volunteer applications #360

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
repository_dispatch:
types: [automated-update-trigger]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.13", "3.14" ]
fail-fast:
false
steps:
- uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v3
- uses: actions/setup-python@v5
with:
python-version: "${{ matrix.python-version }}"
check-latest: true
allow-prereleases: true
- name: Lint
run: make lint
- name: Tests
run: make test
- name: Check
run: make check