Skip to content

Workflow file for this run

name: Our CI
on:
pull_request:
push:
workflow_dispatch:
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:

Check failure on line 12 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 12
- uses: actions/checkout@v4
- name: Install Python
- uses: actions/setup_python@v5
with:
python-version: "3.11"
- name: Install_markdown_slides
run: pip install git+https://gitlab.com/da_doomer/markdown-slides.git
- name: Generate slides
run: mdslides slides.md --output_dir slides
- name: Upload pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./slides
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v3