Skip to content

install python

install python #2

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- update-ci
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '2.7'
bundler-cache: true
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install Python dependencies
run: |
pip install PyYAML==6.0.1
pip install python-frontmatter==0.5.0