Skip to content

Commit

Permalink
ci: add to run one example in windows
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigomelo9 committed Sep 5, 2024
1 parent 6dc528a commit 2ad2dea
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
- name: Set up Python ${{ matrix.pyver }}
uses: actions/setup-python@v5
with:
Expand All @@ -33,14 +30,16 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install dependencies
run: pip install . && pip install pytest
run: |
pip install . && pip install pytest
- name: Run tests
run: make test
run: |
python3 ${{ github.workspace }}\tests\mocks\vivado
Set-Alias vivado "python3 ${{ github.workspace }}\tests\mocks\vivado"
vivado
cd examples\projects && python3 vivado.py

0 comments on commit 2ad2dea

Please sign in to comment.