added simple warning message for when gnd and vcc nets are merged #310
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: Pytest | |
on: [push] | |
jobs: | |
SpyDrNet_push: | |
name: SpyDrNet Push | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python-version: | |
- "3.6" | |
- "3.7" | |
- "3.8" | |
- "3.9" | |
- "3.10" | |
env: | |
EXAMPLE_NETLISTS_PATH: ${{ github.workspace }}/example_netlists/ | |
steps: | |
- uses: actions/checkout@master | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Dependencies | |
run: | | |
python -m pip install requests pytest | |
- name: Run Pytest for SpyDrNet | |
run: | | |
python3 -m pytest -v |