-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: added linting check and run test on github actions
- Loading branch information
Showing
4 changed files
with
89 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
name: Github CI | ||
|
||
on: | ||
push: | ||
branches: ['main'] | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: ['3.8'] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Install Pipenv | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install pipenv | ||
- name: Install dependencies | ||
run: | | ||
pipenv install --dev | ||
- name: Run tests with coverage | ||
run: | | ||
pipenv run coverage-xml | ||
- name: Send coverage to CodeCov | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
fail_ci_if_error: false | ||
verbose: true | ||
|
||
linting: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.8' | ||
|
||
- name: Install lint dependencies | ||
run: pip install flake8 mypy isort | ||
|
||
- name: flake8 | ||
uses: liskin/gh-problem-matcher-wrap@v3 | ||
with: | ||
linters: flake8 | ||
run: flake8 --max-line-length=88 --ignore=E203,W503 src/ | ||
- name: mypy | ||
uses: liskin/gh-problem-matcher-wrap@v3 | ||
with: | ||
linters: mypy | ||
run: mypy --strict --show-column-numbers src/ | ||
- name: isort | ||
uses: liskin/gh-problem-matcher-wrap@v3 | ||
with: | ||
linters: isort | ||
run: isort --line-length=88 --check src/ |
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
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,11 @@ | ||
# This files contains codecov configurations. | ||
|
||
# Disabling comments | ||
comment: false | ||
|
||
# Disabling Github checks | ||
github_checks: false | ||
coverage: | ||
status: | ||
project: off | ||
patch: off |