학부소식 크롤링하는 함수 추가 #23
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI - notice_crawler (Python) | |
| on: | |
| push: | |
| paths: | |
| - "notice_crawler/**" | |
| - ".github/workflows/ci-notice-crawler.yml" | |
| pull_request: | |
| paths: | |
| - "notice_crawler/**" | |
| - ".github/workflows/ci-notice-crawler.yml" | |
| jobs: | |
| lint-run: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: notice_crawler | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Syntax check | |
| run: python -m compileall . |