Skip to content

[enhc] support for multiple Python versions (#299) #6

[enhc] support for multiple Python versions (#299)

[enhc] support for multiple Python versions (#299) #6

Workflow file for this run

name: Opcodes generation
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12','3.13']
strategy:

Check failure on line 16 in .github/workflows/python-app.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/python-app.yml

Invalid workflow file

You have an error in your yaml syntax on line 16
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12','3.13']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
python-version: ${{ matrix.python-version }}
- name: Install Coverage
run: |
pip3 install coverage
- name: Run pre-commit
run: |
python3 -m pip install pre-commit
pre-commit run --all-files
- name: Generate
run: coverage run ./parse.py -c -chisel -sverilog -rust -latex -spinalhdl -go "rv*" "unratified/rv*"
- name: Check C output
run: cat encoding.out.h | cpp
run: cat encoding.out.h | cpp
- name: Generate coverage
run: coverage xml
- name: Upload coverage
uses: codecov/codecov-action@v4