Skip to content

Commit b1c1009

Browse files
committed
install python
1 parent c2882b4 commit b1c1009

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,20 @@ jobs:
1111

1212
steps:
1313
- name: Checkout repository
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v6
1515

1616
- name: Set up Ruby
1717
uses: ruby/setup-ruby@v1
1818
with:
1919
ruby-version: '2.7'
2020
bundler-cache: true
21+
22+
- name: Set up Python
23+
uses: actions/setup-python@v5
24+
with:
25+
python-version: '3.x'
26+
27+
- name: Install Python dependencies
28+
run: |
29+
pip install PyYAML==6.0.1
30+
pip install python-frontmatter==0.5.0

0 commit comments

Comments
 (0)