Skip to content

Bump actions/setup-python from 5 to 6 #6

Bump actions/setup-python from 5 to 6

Bump actions/setup-python from 5 to 6 #6

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
compile-check:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.12"]
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Compile check all scripts
run: |
find skills/ -name "*.py" -exec python -m py_compile {} +
echo "All scripts compile successfully"