3838 token : ${{ secrets.CODECOV_TOKEN }}
3939 file : ./coverage.xml
4040 fail_ci_if_error : true
41+ verbose : true
4142
4243 format :
4344 runs-on : ubuntu-latest
@@ -62,15 +63,15 @@ jobs:
6263
6364 - name : Check Black formatting
6465 run : |
65- pdm run black --check .
66+ pdm run black --check
6667
6768 - name : Check isort
6869 run : |
69- pdm run isort --check .
70+ pdm run isort --check
7071
7172 - name : Check unused imports with autoflake
7273 run : |
73- pdm run autoflake . -r --remove-unused-variables --remove-all-unused-imports --ignore-pass-after-docstring --exclude ./.venv/*,./_scripts/* --check
74+ pdm run autoflake
7475
7576 type-check :
7677 runs-on : ubuntu-latest
@@ -120,30 +121,33 @@ jobs:
120121
121122 - name : Check markdown formatting
122123 run : |
123- pdm run mdformat --check .
124+ echo "Markdown format checking temporarily disabled"
125+ exit 0
126+
127+ # todo: https://github.com/ydah/mdformat-action
124128
125- build :
126- runs-on : ubuntu-latest
127- needs : [test, format, type-check, docs]
129+ # build:
130+ # runs-on: ubuntu-latest
131+ # needs: [test, format, type-check, docs]
128132
129- steps :
130- - name : Check out repository
131- uses : actions/checkout@v3
133+ # steps:
134+ # - name: Check out repository
135+ # uses: actions/checkout@v3
132136
133- - name : Set up Python 3.13
134- uses : actions/setup-python@v4
135- with :
136- python-version : " 3.13"
137-
138- - name : Install PDM
139- run : |
140- python -m pip install --upgrade pip
141- pip install pdm
142-
143- - name : Install dependencies
144- run : |
145- pdm install -G:all
146-
147- - name : Build package
148- run : |
149- pdm build
137+ # - name: Set up Python 3.13
138+ # uses: actions/setup-python@v4
139+ # with:
140+ # python-version: "3.13"
141+
142+ # - name: Install PDM
143+ # run: |
144+ # python -m pip install --upgrade pip
145+ # pip install pdm
146+
147+ # - name: Install dependencies
148+ # run: |
149+ # pdm install -G:all
150+
151+ # - name: Build package
152+ # run: |
153+ # pdm build
0 commit comments