Skip to content

Commit

Permalink
Update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
muhammad-khair committed Jul 14, 2024
1 parent 1235ec8 commit 42f5281
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 25 deletions.
28 changes: 24 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,18 @@ jobs:
pytest-test:
runs-on: ubuntu-latest
steps:
- name: Set up python
uses: ./.github/workflows/setup-python.yml
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run pytest tests
run: |
Expand All @@ -28,8 +38,18 @@ jobs:
robot-test:
runs-on: ubuntu-latest
steps:
- name: Set up python
uses: ./.github/workflows/setup-python.yml
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run robot tests
run: |
Expand Down
21 changes: 0 additions & 21 deletions .github/workflows/setup-python.yml

This file was deleted.

0 comments on commit 42f5281

Please sign in to comment.