Skip to content

Commit

Permalink
Refactor GitHub Actions workflow to support multiple Python versions
Browse files Browse the repository at this point in the history
Signed-off-by: Myrausman <[email protected]>
  • Loading branch information
Myrausman committed Oct 10, 2024
1 parent dcbdd96 commit 6fa646b
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 10 deletions.
17 changes: 14 additions & 3 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,36 @@ on:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, '3.10', 3.12]

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: ${{ matrix.python-version }}

- name: Install PyYAML
run: |
pip3 install -r requirements.txt
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@v2
23 changes: 16 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,28 @@ on:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.10', '3.12']

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install PyYAML
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
pip3 install -r requirements.txt
pip3 install coverage
pip install -r requirements.txt
pip install coverage
- name: Test error outputs
run: coverage run -m unittest -b
- name: Generate coverage

- name: Generate coverage report
run: coverage xml
- name: Upload coverage

- name: Upload coverage report
uses: codecov/codecov-action@v2

0 comments on commit 6fa646b

Please sign in to comment.