Skip to content

chore(deps): update github artifact actions #156

chore(deps): update github artifact actions

chore(deps): update github artifact actions #156

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@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.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