Skip to content

Commit 1a9ac52

Browse files
committed
Fix CI
1 parent 31eb8d5 commit 1a9ac52

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/lintyMcLintface.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ on:
66
workflow_dispatch:
77

88
jobs:
9-
109
bikeshed:
1110
runs-on: ubuntu-latest
1211

@@ -17,14 +16,15 @@ jobs:
1716
- name: setup python
1817
uses: actions/setup-python@v5
1918
with:
20-
python-version: '3.x'
19+
python-version: "3.x"
2120

2221
- name: install bikeshed
2322
run: |
23+
sudo apt-get update && apt-get install libxml2-devel libxslt-devel
2424
python -m pip install --upgrade pip
2525
pip install bikeshed
2626
bikeshed update
2727
2828
- name: lint
2929
run: |
30-
bikeshed spec index.bs /dev/null
30+
bikeshed spec index.bs /dev/null

0 commit comments

Comments
 (0)