Skip to content

Commit a7d7c94

Browse files
Fix CI (#113)
1 parent 31eb8d5 commit a7d7c94

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/lintyMcLintface.yml

Lines changed: 4 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,16 @@ 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
24+
sudo apt-get install libxml++2.6-dev libxslt1-dev
2425
python -m pip install --upgrade pip
2526
pip install bikeshed
2627
bikeshed update
2728
2829
- name: lint
2930
run: |
30-
bikeshed spec index.bs /dev/null
31+
bikeshed spec index.bs /dev/null

0 commit comments

Comments
 (0)