Skip to content

Commit

Permalink
Updated github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mehmet-yoti committed Oct 24, 2024
1 parent ad28fd9 commit c21ddaa
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.7, 3.8, 3.9, "3.10"]
python-version: [3.7, 3.8, 3.9, 3.10]

steps:
- uses: actions/checkout@v2
Expand All @@ -22,11 +22,11 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- run: pip install -U setuptools
- run: pip install -U setuptools wheel

- run: pip install -r requirements.txt
- run: pip install --no-cache-dir -r requirements.txt

- run: pip install -e .[dev]
- run: pip install --no-cache-dir -e .[dev]

- run: pytest -v

Expand All @@ -44,12 +44,12 @@ jobs:
with:
python-version: 3.9

- run: pip install --upgrade setuptools
- run: pip install --upgrade setuptools wheel

- run: pushd examples/aml && pip install -r requirements.txt && popd
- run: pushd examples/aml && pip install --no-cache-dir -r requirements.txt && popd

- run: pushd examples/yoti_example_django && pip install --upgrade pip && pip install -r requirements.txt && popd
- run: pushd examples/yoti_example_django && pip install --no-cache-dir --upgrade pip && pip install --no-cache-dir -r requirements.txt && popd

- run: pushd examples/yoti_example_flask && pip install -r requirements.txt && popd
- run: pushd examples/yoti_example_flask && pip install --no-cache-dir -r requirements.txt && popd

- run: pushd examples/doc_scan && pip install -r requirements.txt && popd
- run: pushd examples/doc_scan && pip install --no-cache-dir -r requirements.txt && popd

0 comments on commit c21ddaa

Please sign in to comment.