10000 chore(deps): update actions/setup-python action to v5.5.0 · pythonanywhere/pythonanywhere-core@bf66d89 · GitHub
[go: up one dir, main page]

Skip to content

chore(deps): update actions/setup-python action to v5.6.0 #176

chore(deps): update actions/setup-python action to v5.6.0

chore(deps): update actions/setup-python action to v5.6.0 #176

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12', '3.13' ]
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Set up Python
uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
with:
python-version: ${{ matrix.python-version }}
- 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
0