Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/workflows/syle-checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Style Guide Review (Automatic)
on:
pull_request:
paths:
- 'lectures/**/*.md'
jobs:
style-check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Run style guide checker
uses: QuantEcon/meta/.github/actions/style-guide-checker@copilot/fix-204
with:
style-guide: 'https://github.com/QuantEcon/meta/blob/main/.github/copilot-qe-style-guide.md'
github-token: ${{ secrets.GITHUB_TOKEN }}
openai-api-key: ${{ secrets.OPENAI_API_KEY }}
docs: 'lectures'
mode: 'pr'
2 changes: 2 additions & 0 deletions lectures/orth_proj.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ kernelspec:
```{index} single: Orthogonal Projection
```

TEST TRIGGER EDIT

## Overview

Orthogonal projection is a cornerstone of vector space methods, with many diverse applications.
Expand Down
Loading