forked from sakura-editor/sakura
-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (32 loc) · 797 Bytes
/
python-check.yml
File metadata and controls
38 lines (32 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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@v6
- 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