Skip to content

Commit 14e3b25

Browse files
authored
publish.yml, test.yml: remove extra whitespace (#324)
1 parent e16548f commit 14e3b25

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,14 @@ jobs:
6363
runs-on: ubuntu-latest
6464
if: github.repository == 'tldr-pages/tldr-python-client'
6565
needs: ['release-build']
66-
67-
environment:
66+
67+
environment:
6868
name: pypi
6969
url: https://pypi.org/project/tldr/
70-
70+
7171
permissions:
7272
id-token: write # Required for accessing OpenID Connect (OIDC) token for PyPI trusted publisher
73-
73+
7474
steps:
7575
- name: Retrieve release distributions
7676
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0

.github/workflows/test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -151,34 +151,34 @@ jobs:
151151

152152
permissions:
153153
contents: read
154-
154+
155155
strategy:
156156
matrix:
157157
python-version: ['3.11', '3.12', '3.13']
158-
158+
159159
steps:
160160
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
161161

162162
- name: Set up Python ${{ matrix.python-version }}
163163
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
164164
with:
165165
python-version: ${{ matrix.python-version }}
166-
166+
167167
- name: Install developer dependencies
168168
run: |
169169
python3 -m pip install -U pip
170170
python3 -m pip install -U pytest pytest-runner flake8
171-
171+
172172
- name: Install tldr dependencies
173173
run:
174174
python3 -m pip install -r requirements.txt --user
175-
175+
176176
- name: Lint codebase
177177
run: python3 -m flake8
178-
178+
179179
- name: Run test suite
180180
run: python3 -m pytest tests/
181-
181+
182182
- name: Test tldr cli
183183
run: |
184184
python3 -m pip install .

0 commit comments

Comments
 (0)