Skip to content

Commit

Permalink
trying to fix the infinite install and adding a caching mechanism
Browse files Browse the repository at this point in the history
  • Loading branch information
Henri-ColibrITD authored Mar 29, 2024
1 parent b64782b commit 050a894
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,16 @@ on:

jobs:
test:
runs-on: ubuntu-latest
runs-on: python:3.9
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Cache pip install
uses: actions/setup-python@v5
with:
python-version: '3.9'
cache: 'pip'
- name: Install Dependencies
run: |
pip install -r requirements-dev.txt
- name: Test
run: pip install -r requirements-dev.txt
- name: Run test
run: python -m pytest

0 comments on commit 050a894

Please sign in to comment.