Skip to content

Bump Python 3.10+ dependencies to resolve known vulnerabilities (v3.3.4) #129

Bump Python 3.10+ dependencies to resolve known vulnerabilities (v3.3.4)

Bump Python 3.10+ dependencies to resolve known vulnerabilities (v3.3.4) #129

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches: [master, main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python: ["3.10", "3.11", "3.12"]
name: Python ${{ matrix.python }} Test
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run test suite
run: python -m unittest discover -s pusher_tests --top-level-directory .