-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: William José Moreno Reyes <williamjmorenor@gmail.com> WIP Project refactor for beta release Signed-off-by: William José Moreno Reyes <williamjmorenor@gmail.com> WIP WIP WIP WIP WIP WIP WIP Signed-off-by: William José Moreno Reyes <williamjmorenor@gmail.com> WIP Signed-off-by: William José Moreno Reyes <williamjmorenor@gmail.com> WIP Signed-off-by: William José Moreno Reyes <williamjmorenor@gmail.com> WIP Signed-off-by: William José Moreno Reyes <williamjmorenor@gmail.com> WIP WIP WIP WIP Signed-off-by: William José Moreno Reyes <williamjmorenor@gmail.com>
- Loading branch information
1 parent
d621969
commit d6ad12f
Showing
63 changed files
with
6,850 additions
and
3,672 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,41 @@ | ||
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | ||
|
||
name: Refactor | ||
|
||
on: | ||
push: | ||
branches: [project_refactor] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
# 3.8 Shared hosting | ||
# 3.9 Ubi minimal | ||
# 3.12 Last release | ||
python-version: [3.8] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install -r test.txt | ||
- name: Run lint file | ||
run: | | ||
rm -rf build | ||
python -m build | ||
python -m twine check dist/* | ||
bash .lint.sh | ||
- name: Test with SQLite | ||
run: | | ||
CI=True pytest -v --exitfirst --cov=now_lms | ||
- name: Codecov | ||
uses: codecov/codecov-action@v1 |
Oops, something went wrong.