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.
2 parents 39b39c9 + 87ba05f commit ef62d42Copy full SHA for ef62d42
.github/workflows/ci.yml
@@ -5,6 +5,9 @@ on:
5
jobs:
6
preview:
7
runs-on: "runs-on=${{ github.run_id }}/family=g4dn.2xlarge/image=quantecon_ubuntu2404/disk=large"
8
+ permissions:
9
+ issues: write
10
+ pull-requests: write
11
steps:
12
- uses: actions/checkout@v5
13
with:
@@ -72,6 +75,14 @@ jobs:
72
75
shell: bash -l {0}
73
76
run: |
74
77
jb build lectures --path-output ./ -n -W --keep-going
78
+ - name: Check for Python warnings
79
+ uses: QuantEcon/meta/.github/actions/check-warnings@main
80
+ with:
81
+ html-path: './_build/html'
82
+ fail-on-warning: 'false'
83
+ create-issue: 'true'
84
+ issue-title: 'Python warnings found in code output'
85
+ notify: 'mmcky,HumphreyYang'
86
- name: Upload Execution Reports (HTML)
87
uses: actions/upload-artifact@v4
88
if: failure()
0 commit comments