Skip to content

root: [chore] bump version to 1.3.1 #42

root: [chore] bump version to 1.3.1

root: [chore] bump version to 1.3.1 #42

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python Lint and Test
on:
push:
branches:
- main
- main-fixes
- pre-release
- dev
pull_request:
branches:
- main
- main-fixes
- pre-release
- dev
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 mypy
python -m pip install .
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --max-line-length 100 --ignore E402,W503 --count --show-source --statistics
- name: Type check with mypy
run: |
MYPYPATH=src/ mypy src/*.py src/x86/*.py --exclude src/tests/unit_isa_loader.py \
--exclude src/x86/tests/unit_model.py --exclude src/x86/tests/unit_executor.py \
--exclude src/x86/tests/unit_generators.py
- name: Common unit tests
run: |
python -m unittest discover tests -p "unit_*.py" -v
- name: x86 unit tests
run: |
# Note: we intentionally do not use the 'discover' option because
# it causes cross-contamination of config options between unit tests
python3 -m unittest tests.x86_tests.unit_generators -v
python3 -m unittest tests.x86_tests.unit_isa_loader -v
python3 -m unittest tests.x86_tests.unit_model -v