Skip to content

Commit

Permalink
Update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
OlivieFranklova committed Feb 19, 2025
1 parent c840aae commit dbd5f34
Showing 1 changed file with 29 additions and 12 deletions.
41 changes: 29 additions & 12 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,20 @@ jobs:
runs-on: ubuntu-latest
name: Integration Tests all issues
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Python
uses: actions/[email protected]
with:
python-version: '3.11'
cache: 'pip'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Integration test
id: generate_living_doc
uses: ./
Expand All @@ -27,11 +41,7 @@ jobs:
}
]
- name: Set up Python
uses: actions/[email protected]
with:
python-version: '3.11'
cache: 'pip'

- name: Verify integration test results
run: pytest tests/integration
Expand All @@ -40,9 +50,22 @@ jobs:
runs-on: ubuntu-latest
name: Integration Tests in project
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Python
uses: actions/[email protected]
with:
python-version: '3.11'
cache: 'pip'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Integration test
id: generate_living_doc
uses: ./
uses: .
env:
GITHUB-TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand All @@ -57,11 +80,5 @@ jobs:
}
]
- name: Set up Python
uses: actions/[email protected]
with:
python-version: '3.11'
cache: 'pip'

- name: Verify integration test results
run: pytest tests/integration

0 comments on commit dbd5f34

Please sign in to comment.