Spaces:
Sleeping
Sleeping
Dev (#3)
Browse files* added toml file
* updating toml
* adding an app file
* updates
* pylint test
* pylint test
---------
Co-authored-by: mattoofahadD3 <[email protected]>
- .github/workflows/pylint.yml +3 -3
- src/app.py +5 -1
.github/workflows/pylint.yml
CHANGED
@@ -7,11 +7,11 @@ jobs:
|
|
7 |
runs-on: ubuntu-latest
|
8 |
strategy:
|
9 |
matrix:
|
10 |
-
python-version: ["3.
|
11 |
steps:
|
12 |
-
- uses: actions/checkout@
|
13 |
- name: Set up Python ${{ matrix.python-version }}
|
14 |
-
uses: actions/setup-python@
|
15 |
with:
|
16 |
python-version: ${{ matrix.python-version }}
|
17 |
- name: Install dependencies
|
|
|
7 |
runs-on: ubuntu-latest
|
8 |
strategy:
|
9 |
matrix:
|
10 |
+
python-version: ["3.10", "3.11"]
|
11 |
steps:
|
12 |
+
- uses: actions/checkout@v4
|
13 |
- name: Set up Python ${{ matrix.python-version }}
|
14 |
+
uses: actions/setup-python@v4
|
15 |
with:
|
16 |
python-version: ${{ matrix.python-version }}
|
17 |
- name: Install dependencies
|
src/app.py
CHANGED
@@ -1 +1,5 @@
|
|
1 |
-
|
|
|
|
|
|
|
|
|
|
1 |
+
"""Module doc string"""
|
2 |
+
|
3 |
+
import os
|
4 |
+
|
5 |
+
os.getcwd()
|