Skip to content

Commit b2e8dab

Browse files
committed
Update README.md; Update CI
1 parent c54e1df commit b2e8dab

File tree

3 files changed

+33
-41
lines changed

3 files changed

+33
-41
lines changed

.github/workflows/integration.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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

.github/workflows/pylint.yml

-34
This file was deleted.

README.md

+3-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
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

0 commit comments

Comments
 (0)