mirror of
https://github.com/kristoferssolo/FOSSDB.git
synced 2025-10-21 17:50:35 +00:00
commit
ddee0c44b1
25
.github/workflows/lint.yml
vendored
Normal file
25
.github/workflows/lint.yml
vendored
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
name: Lint
|
||||||
|
on:
|
||||||
|
- push
|
||||||
|
- pull_request
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-latest]
|
||||||
|
python-version: ["3.10"]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Set up Python ${{ matrix.python-version }}
|
||||||
|
uses: actions/setup-python@v2
|
||||||
|
with:
|
||||||
|
python-version: ${{ matrix.python-version }}
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install mypy flake8
|
||||||
|
- name: Lint with mypy
|
||||||
|
run: mypy FOSSDB_web
|
||||||
|
- name: Lint with flake8
|
||||||
|
run: flake8 FOSSDB_web
|
||||||
6
.github/workflows/test.yml
vendored
6
.github/workflows/test.yml
vendored
@ -18,6 +18,6 @@ jobs:
|
|||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install tox tox-gh-actions
|
pip install -r requirements.txt
|
||||||
- name: Test with tox
|
- name: Test with django test
|
||||||
run: tox
|
run: python manage.py test
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
# from django.contrib import admin
|
from django.contrib import admin
|
||||||
|
|
||||||
from .host.models import HostingPlatform, ProjectHostingPlatform
|
from .host.models import HostingPlatform, ProjectHostingPlatform
|
||||||
from .language.models import ProgrammingLanguage, ProjectProgrammingLanguage
|
from .language.models import ProgrammingLanguage, ProjectProgrammingLanguage
|
||||||
|
|||||||
@ -1,7 +1,8 @@
|
|||||||
# FOSSDB
|
# FOSSDB
|
||||||
|
|
||||||
[](https://www.gnu.org/licenses/gpl-3.0.en.html)
|
[](https://www.gnu.org/licenses/gpl-3.0.en.html)
|
||||||

|

|
||||||
|

|
||||||
|
|
||||||
|
|
||||||
FOSSDB is an open-source web application that helps users find, contribute, and collaborate on free and open-source software (FOSS) projects.
|
FOSSDB is an open-source web application that helps users find, contribute, and collaborate on free and open-source software (FOSS) projects.
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user