Skip to content

Bump actions/checkout from 5 to 6 #31

Bump actions/checkout from 5 to 6

Bump actions/checkout from 5 to 6 #31

Workflow file for this run

name: Test add
on:
pull_request:
push:
jobs:
test:
strategy:
matrix:
python:
- '3.12'
- '3.13'
name: Python ${{ matrix.python }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python }}
- name: Run add.py
run: |
python add.py 1 2
- name: Run tests
run: |
python test.py