Skip to content

Bump actions/checkout from 2.3.4 to 3.5.2 (#21) #12

Bump actions/checkout from 2.3.4 to 3.5.2 (#21)

Bump actions/checkout from 2.3.4 to 3.5.2 (#21) #12

Workflow file for this run

name: build
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v6.0.2
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Run tests
run: |
python -m pip install --upgrade pip
sh test.sh