Skip to content

改善1

改善1 #29

Workflow file for this run

name: Python Compile Check
on:
push:
paths-ignore:
- '**/*.md'
- '.gitignore'
- '.editorconfig'
pull_request:
paths-ignore:
- '**/*.md'
- '.gitignore'
- '.editorconfig'
workflow_dispatch:
jobs:
python-compile-check:
runs-on: windows-latest
strategy:
matrix:
python-version: ['3.x']
steps:
- name: Checkout repository
uses: actions/checkout@v7
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Python version check
run: python --version
shell: cmd
- name: Python compile check before install
run: python -m compileall -f .
shell: cmd