Skip to content

chore(deps): update actions/setup-python action to v6.1.0 #135

chore(deps): update actions/setup-python action to v6.1.0

chore(deps): update actions/setup-python action to v6.1.0 #135

Workflow file for this run

name: Test
on:
push:
branches:
- '**'
tags-ignore:
- 'v*'
pull_request:
workflow_call:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14" ]
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Set up Python
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install poetry
run: |
python -m pip install --upgrade pip
python -m pip install poetry
- name: Install dependencies
shell: bash
run: python -m poetry install
- name: Test with pytest
run: |
python -m poetry run pytest
- name: Check coverage
run: |
python -m poetry run pytest --cov=pythonanywhere_core --cov-fail-under=65