Skip to content

chore(deps): update actions/setup-python action to v6 #55

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

chore(deps): update actions/setup-python action to v6 #55

Workflow file for this run

name: Test install
on:
- push
- pull_request
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install numlockw
run: |
python -m pip install -v .
(cd /tmp && python -m numlockw --help)