Skip to content

Commit

Permalink
Fix workflow file indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-rodriguez committed Feb 10, 2025
1 parent fa5ccd8 commit 6fde6fe
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions .github/workflows/test-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,21 @@ jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11, 3.12, 3.13]
strategy:
matrix:
python-version: [3.11, 3.12, 3.13]

steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
# install package and requirements
pip install ".[all]"
- name: Test with pytest
run: |
pytest
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
# install package and requirements
pip install ".[all]"
- name: Test with pytest
run: |
pytest

0 comments on commit 6fde6fe

Please sign in to comment.