Skip to content

Update gh scripts

Update gh scripts #80

Workflow file for this run

name: Regression Tests
on:
push:
branches:
- master
- 'stable/**'
- bus_monitor_impr
pull_request:
branches:
- master
- 'stable/**'
jobs:
tests:

Check failure on line 15 in .github/workflows/test.yaml

View workflow run for this annotation

GitHub Actions / Regression Tests

Invalid workflow file

The workflow is not valid. .github/workflows/test.yaml (Line: 15, Col: 3): The workflow must contain at least one job with no dependencies.
runs-on: ubuntu-22.04
needs: lint
strategy:
matrix:
python-version:
- 3.7
- 3.8
- 3.9
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Install Icarus and its requirements
run: |
sudo apt update
sudo apt-get install build-essential libboost-dev iverilog verilator
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install nox
run: pip install --upgrade nox
- name: Run nox tests
run: nox -s "run-${{ matrix.python-version }}"
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}