We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d0636f7 + 2d10077 commit de4ad5eCopy full SHA for de4ad5e
.github/workflows/dca_tests.yml
@@ -12,12 +12,12 @@ jobs:
12
strategy:
13
fail-fast: false
14
matrix:
15
- python-version: ["3.7", "3.8", "3.9"]
+ python-version: ["3.8", "3.9"]
16
steps:
17
- name: Test DCA
18
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
19
- name: Set up Python ${{ matrix.python-version }}
20
- uses: actions/setup-python@v3
+ uses: actions/setup-python@v4
21
with:
22
python-version: ${{ matrix.python-version }}
23
- name: Install dependencies
@@ -28,7 +28,7 @@ jobs:
28
python -m pip install -e .
29
- name: Lint with flake8
30
run: |
31
- python -m flake8 src/dca tests
+ python -m flake8 src/dca tests --exit-zero
32
- name: Test with pytest
33
34
python -m pytest -sv --cov=./ tests
0 commit comments