Skip to content

Update gh scripts

Update gh scripts #79

Workflow file for this run

name: Regression Tests
on:
push:
branches:
- master
- 'stable/**'
- bus_monitor_impr
pull_request:
branches:
- master
- 'stable/**'
jobs:
tests:
runs-on: ubuntu-22.04
needs: lint_job # Depends on lint job from lint.yaml
id: regression_job

Check failure on line 18 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: 18, Col: 5): Unexpected value 'id'
strategy:
matrix:
python-version:
- 3.7
- 3.8
- 3.9
steps:
- name: Check out code
uses: actions/checkout@v2
- 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@v2
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 }}