We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2882b4 commit b1c1009Copy full SHA for b1c1009
1 file changed
.github/workflows/build.yml
@@ -11,10 +11,20 @@ jobs:
11
12
steps:
13
- name: Checkout repository
14
- uses: actions/checkout@v4
+ uses: actions/checkout@v6
15
16
- name: Set up Ruby
17
uses: ruby/setup-ruby@v1
18
with:
19
ruby-version: '2.7'
20
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