Skip to content

Bump GitHub Actions versions in install workflow #48

Bump GitHub Actions versions in install workflow

Bump GitHub Actions versions in install workflow #48

Workflow file for this run

name: Install
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11, 3.12, 3.13, 3.14]
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e '.[all]'