Skip to content

Drop support for Python below 3.6 #13

Drop support for Python below 3.6

Drop support for Python below 3.6 #13

Workflow file for this run

name: Run all tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
python-version: [3.6, 3.7, 3.8, 3.9, "3.10", 3.11, 3.12]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install asxxxx
run: |
wget --no-verbose --content-disposition https://github.com/6502org/6502.org/blob/b4a4f243d9ae3ea78fc14a487bac650b5a3f7a12/public/tools/asm/asxv5p40_20220112.zip?raw=true
unzip -q asxv5p40_20220112.zip
make -C asxv5pxx/asxmak/linux/build all
echo "$PWD/asxv5pxx/asxmak/linux/build" >> $GITHUB_PATH
- name: Install srecord
run: sudo apt-get install -y srecord
- name: Assemble debugger firmware
run: make -C k0emu/debugger/firmware
- name: Show Python version
run: python -V
- name: Install dependencies
run: pip install setuptools k0dasm
- name: Run the tests
run: python setup.py test -q