Skip to content

chore(deps): update softprops/action-gh-release action to v2.5.0 #167

chore(deps): update softprops/action-gh-release action to v2.5.0

chore(deps): update softprops/action-gh-release action to v2.5.0 #167

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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- 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