Skip to content

Bump dessant/lock-threads from 4 to 5 #433

Bump dessant/lock-threads from 4 to 5

Bump dessant/lock-threads from 4 to 5 #433

Workflow file for this run

# Based on the `python-app.yml` template from GitHub actions:
# https://github.com/actions/starter-workflows/blob/main/ci/python-app.yml
#
# Adapted by Diego Ramirez.
name: Python application tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", 3.11] # all the versions intended for text-formatter
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python -c "import sys; print('Python version:', sys.version)"
- name: Install pip dependencies
run: |
python -m pip install --upgrade pip setuptools nox
- name: Run Nox
run: |
nox --non-interactive -s test
- name: Finalize the test
run: echo 'Process completed succesfully!'