We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45b42f8 commit e955c12Copy full SHA for e955c12
1 file changed
.github/workflows/ci.yml
@@ -114,29 +114,3 @@ jobs:
114
run: |
115
pip install pylint
116
pylint src/
117
- docs:
118
- runs-on: ubuntu-latest
119
-
120
- steps:
121
- # Checkout the repository
122
- - name: Checkout code
123
- uses: actions/checkout@v3
124
125
- # Set up Python
126
- - name: Set up Python
127
- uses: actions/setup-python@v4
128
- with:
129
- python-version: '3.10' # Adjust as needed
130
131
- # Cache pip dependencies
132
- - name: Cache pip
133
- uses: actions/cache@v3
134
135
- path: ~/.cache/pip
136
- key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml') }}
137
- restore-keys: |
138
- ${{ runner.os }}-pip-
139
140
- - name: Test docs build
141
- run: |
142
- pip install ".[docs]"
0 commit comments