File tree Expand file tree Collapse file tree 3 files changed +33
-41
lines changed Expand file tree Collapse file tree 3 files changed +33
-41
lines changed Original file line number Diff line number Diff line change 1+ name : lint
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+ pull_request :
8+ branches :
9+ - main
10+
11+ concurrency :
12+ group : ${{ github.workflow }}-${{ github.ref }}
13+ cancel-in-progress : true
14+
15+ jobs :
16+ build :
17+ runs-on : ubuntu-latest
18+ steps :
19+ - uses : actions/checkout@v4
20+ - name : Set up Python 3.10
21+ uses : actions/setup-python@v5
22+ with :
23+ python-version : ' 3.10'
24+ cache : ' pip'
25+ - name : Install dependencies
26+ run : pip install -r requirements.txt
27+ - name : Run pylint
28+ run : pylint app
29+ - name : Ensure that the application runs without failing.
30+ run : python3 -m app
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- # python-tutorial
1+ # python-tutorial-codeblocks
22
3- ## Brief summary
3+ Codeblocks that are automatically tested before being exported for use with https://github.com/Raymi306/personal-site
44
5- A tutorial with eventual content for both absolute beginners and experienced programmers.
6- Codeblocks that are automatically tested before being exported for use on my personal page's Python tutorial.
7-
8- Once, this repository held both a site generator and the markdown content of my Python tutorial.
9- It is due for a name change...
5+ Long ago this repository also contained a handwritten site generator and the markdown content of my Python tutorial
You can’t perform that action at this time.
0 commit comments