Skip to content

Assign segment to user-declared symbol if rom address was provided (#… #718

Assign segment to user-declared symbol if rom address was provided (#…

Assign segment to user-declared symbol if rom address was provided (#… #718

Workflow file for this run

name: mypy
on:
push:
pull_request:
jobs:
checks:
runs-on: ubuntu-latest
name: mypy
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install Dependencies
run: |
pip install mypy
pip install black
pip install -r requirements.txt
pip install types-PyYAML
- name: mypy
run: mypy --show-column-numbers --hide-error-context .
- name: black
run: black --check .
unit_tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install Dependencies
run: pip install -r requirements.txt
- name: Run unit tests
run: sh run_tests.sh