Skip to content

Commit

Permalink
fix indentation for yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
TurtleP committed Sep 28, 2023
1 parent 756a6bc commit 4a07597
Showing 1 changed file with 44 additions and 46 deletions.
90 changes: 44 additions & 46 deletions .github/workflows/regression.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,62 +29,60 @@ jobs:
CTR:
runs-on: ubuntu-latest
container:
image: docker://devkitpro/devkitarm
options: --cpus 2
container:
image: docker://devkitpro/devkitarm
options: --cpus 2

steps:
- name: Checkout
uses: actions/checkout@v3
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest
pip install .
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest
pip install .
- name: Test with pytest
run: |
python -m pytest test/test_process_ctr.py
- name: Test with pytest
run: |
python -m pytest test/test_process_ctr.py
HAC:
runs-on: ubuntu-latest
container:
image: docker://devkitpro/devkita64
options: --cpus 2

steps:
- name: Checkout
uses: actions/checkout@v3

container:
image: docker://devkitpro/devkita64
options: --cpus 2

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest
pip install .
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest
pip install .
- name: Test with pytest
run: |
python -m pytest test/test_process_hac.py
- name: Test with pytest
run: |
python -m pytest test/test_process_hac.py
CAFE:
runs-on: ubuntu-latest
container:
image: docker://devkitpro/devkitppc
options: --cpus 2

container:
image: docker://devkitpro/devkitppc
options: --cpus 2

steps:
- name: Checkout
uses: actions/checkout@v3
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest
pip install .
- name: Test with pytest
run: |
python -m pytest test/test_process_ctr.py
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest
pip install .
- name: Test with pytest
run: |
python -m pytest test/test_process_ctr.py

0 comments on commit 4a07597

Please sign in to comment.