Skip to content

Commit 34b04db

Browse files
committed
Fixed indentation in the workflows
1 parent a1596fe commit 34b04db

2 files changed

Lines changed: 41 additions & 41 deletions

File tree

.github/workflows/docs.yaml

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -21,35 +21,35 @@ jobs:
2121
env:
2222
UV_SYSTEM_PYTHON: "1"
2323
steps:
24-
- uses: actions/checkout@v6
25-
with:
26-
fetch-depth: 0
24+
- uses: actions/checkout@v6
25+
with:
26+
fetch-depth: 0
2727

28-
- name: Install uv
29-
uses: astral-sh/setup-uv@v5
30-
with:
31-
python-version: '3.10'
32-
enable-cache: true
28+
- name: Install uv
29+
uses: astral-sh/setup-uv@v5
30+
with:
31+
python-version: '3.10'
32+
enable-cache: true
3333

34-
- name: Install dependencies
35-
run: uv pip install -e .[docs]
34+
- name: Install dependencies
35+
run: uv pip install -e .[docs]
3636

37-
- name: Configure Git for GitHub Pages
38-
run: |
39-
git config user.name github-actions
40-
git config user.email github-actions@github.com
37+
- name: Configure Git for GitHub Pages
38+
run: |
39+
git config user.name github-actions
40+
git config user.email github-actions@github.com
4141
42-
- name: Build documentation
43-
run: |
44-
sphinx-build -b html docs docs/_build/html
42+
- name: Build documentation
43+
run: |
44+
sphinx-build -b html docs docs/_build/html
4545
46-
- name: Setup Pages
47-
uses: actions/configure-pages@v5
46+
- name: Setup Pages
47+
uses: actions/configure-pages@v5
4848

49-
- name: Upload artifact
50-
uses: actions/upload-pages-artifact@v4
51-
with:
52-
path: ./docs/_build/html
49+
- name: Upload artifact
50+
uses: actions/upload-pages-artifact@v4
51+
with:
52+
path: ./docs/_build/html
5353

5454
#------------------------------------------------
5555
# Deploy Job: Deploys the built site

.github/workflows/test_installer.yaml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -13,25 +13,25 @@ jobs:
1313
python-version: ["3.10", "3.13"]
1414

1515
steps:
16-
- uses: actions/checkout@v6
17-
- name: Install uv
18-
uses: astral-sh/setup-uv@v5
19-
with:
20-
python-version: ${{ matrix.python-version }}
21-
enable-cache: true
16+
- uses: actions/checkout@v6
17+
- name: Install uv
18+
uses: astral-sh/setup-uv@v5
19+
with:
20+
python-version: ${{ matrix.python-version }}
21+
enable-cache: true
2222

23-
- name: Create work directory
24-
run: mkdir workdir
23+
- name: Create work directory
24+
run: mkdir workdir
2525

26-
- name: Create virtual environment
27-
run: uv venv workdir/.venv
26+
- name: Create virtual environment
27+
run: uv venv workdir/.venv
2828

29-
- name: Install package
30-
run: |
31-
source workdir/.venv/bin/activate
32-
uv pip install $GITHUB_WORKSPACE
29+
- name: Install package
30+
run: |
31+
source workdir/.venv/bin/activate
32+
uv pip install $GITHUB_WORKSPACE
3333
34-
- name: Run post-installation test
35-
run: |
36-
source workdir/.venv/bin/activate
37-
python -c "from hed.models.hed_string import HedString; print('Import test passed.')"
34+
- name: Run post-installation test
35+
run: |
36+
source workdir/.venv/bin/activate
37+
python -c "from hed.models.hed_string import HedString; print('Import test passed.')"

0 commit comments

Comments
 (0)