-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #60 from DataManagementLab/integration
Integration of lab changes
- Loading branch information
Showing
228 changed files
with
14,713 additions
and
1,647 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: PyLint Django | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
strategy: | ||
max-parallel: 4 | ||
matrix: | ||
python-version: [ 3.7, 3.8 ] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v1 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install Python Dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install pylint | ||
pip install pylint-django | ||
pip install -r requirements.txt | ||
- name: Run PyLint - base | ||
run: | | ||
pylint --fail-under=9 --load-plugins=pylint_django --django-settings-module=collab_coursebook.settings base | ||
- name: Run PyLint - content | ||
run: | | ||
pylint --fail-under=9 --load-plugins=pylint_django --django-settings-module=collab_coursebook.settings content | ||
- name: Run PyLint - export | ||
run: | | ||
pylint --fail-under=9 --load-plugins=pylint_django --django-settings-module=collab_coursebook.settings export | ||
- name: Run PyLint - frontend | ||
run: | | ||
pylint --fail-under=9 --load-plugins=pylint_django --django-settings-module=collab_coursebook.settings frontend | ||
- name: Run PyLint - test | ||
run: | | ||
pylint --fail-under=9 --load-plugins=pylint_django --django-settings-module=collab_coursebook.settings test |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
"""Init | ||
Marks this directory as Python package directories. This package contains the base structure | ||
of the collab coursebook. | ||
""" |
Oops, something went wrong.