Merge pull request #356 from linien-org/feature/pyproject-toml #343
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run PyTest | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- .github/workflows/pytest.yml | |
- .github/actions/install-linien/** | |
- gateware/** | |
- linien-common/** | |
- linien-server/** | |
- tests/** | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Install Linien | |
uses: ./.github/actions/install-linien | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pytest migen pytest-plt git+https://github.com/m-labs/misoc | |
- name: Test with pytest | |
run: pytest . |