Add CS2522 course and resources, Add CS2306, CS2310, CS3313 resources #514
Workflow file for this run
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: check README.md style | |
| on: [push, pull_request] | |
| jobs: | |
| check_style: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Set up Python 3.10 | |
| uses: actions/setup-python@v1 | |
| with: | |
| python-version: "3.10" | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install mistune==2.0.0a4 | |
| - name: Check Style | |
| id: check_style | |
| run: ./parser.py ./README.md |