Skip to content

Bump python from 3.12.4-alpine to 3.12.5-alpine in the all-docker group #28

Bump python from 3.12.4-alpine to 3.12.5-alpine in the all-docker group

Bump python from 3.12.4-alpine to 3.12.5-alpine in the all-docker group #28

Workflow file for this run

name: Tests
on:
workflow_dispatch:
pull_request:
branches:
- master
jobs:
tests:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: pip
- name: Install Requirements
run: |
python -m pip install pip wheel --upgrade
python -m pip install -r requirements.txt
- name: Run Tests
run: pytest -v