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 43e9bc7 commit 9b596f3Copy full SHA for 9b596f3
.github/workflows/syle-checker.yml
@@ -0,0 +1,19 @@
1
+name: Style Guide Review (Automatic)
2
+on:
3
+ pull_request:
4
+ paths:
5
+ - 'lectures/**/*.md'
6
+jobs:
7
+ style-check:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: Checkout
11
+ uses: actions/checkout@v4
12
+
13
+ - name: Run style guide checker
14
+ uses: QuantEcon/meta/.github/actions/style-guide-checker@copilot/fix-204
15
+ with:
16
+ github-token: ${{ secrets.GITHUB_TOKEN }}
17
+ openai-api-key: ${{ secrets.OPENAI_API_KEY }}
18
+ docs: 'lectures'
19
+ mode: 'pr'
0 commit comments