forked from toastdriven/restless
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
42 additions
and
25 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,34 @@ | ||
name: Integration - liber-restless | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
continue-on-error: true | ||
fail-fast: false | ||
strategy: | ||
matrix: | ||
python-version: ["3.8", "3.9","3.10","3.11"] | ||
name: Tests on ${{ matrix.python-version }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python and Tox | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
architecture: x64 | ||
- name: Upgrade pip | ||
# Update pip to a stable version in the future when pip-compile fix its | ||
# issue with pip | ||
run: python3 -m pip install --upgrade 'pip<24' | ||
- name: Install Dependencies | ||
run: | | ||
python setup.py develop && | ||
pip install -r requirements-dev.txt | ||
# pip-compile && | ||
# pre-commit install | ||
#- name: Run pre-commit | ||
# run: pre-commit run --all-files | ||
- name: Run tests using Tox | ||
run: tox |
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 |
---|---|---|
|
@@ -16,3 +16,4 @@ htmlcov | |
*.swp | ||
.idea/ | ||
*.whl | ||
.venv |
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 |
---|---|---|
|
@@ -8,7 +8,6 @@ python: | |
- "pypy3" | ||
|
||
env: | ||
- DJANGO="2.2" | ||
- DJANGO="3.0" | ||
- DJANGO="3.1" | ||
- DJANGO="3.2" | ||
|
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,2 @@ | ||
-r requirements.txt | ||
tox>=4.6.4,<5.0 |
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