Skip to content

feat: show python version #3

feat: show python version

feat: show python version #3

Workflow file for this run

name: CI
on:
push:
branches:
- master
paths-ignore:
- "**.md"
- "**.toml"
- "Makefile"
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Show Version and Test
run: |
python3 --version
python3 -m unittest -v