forked from can1357/c2switcher
-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (48 loc) · 1.44 KB
/
Copy pathci.yml
File metadata and controls
59 lines (48 loc) · 1.44 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
lint-and-check:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install ruff
- name: Lint with ruff
run: |
# Stop the build if there are Python syntax errors or undefined names
ruff check c2switcher/ --select=E9,F63,F7,F82 --output-format=full
# Warn on other issues but don't fail
ruff check c2switcher/ --exit-zero
- name: Check Python syntax
run: |
python -m py_compile c2switcher/*.py
- name: Verify package imports
run: |
python -c "import c2switcher; print('✓ c2switcher package imports successfully')"
python -c "from c2switcher.cli import cli; print('✓ c2switcher.cli imports successfully')"
- name: Check entry point
run: |
c2switcher --help
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
with:
scandir: '.'
severity: warning