#16 [asm] procedure virt emit (#18) #72
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ensuring Quality | |
on: [push, pull_request] | |
jobs: | |
quality: | |
name: Ensuring Quality | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the code | |
uses: actions/checkout@v3 | |
- name: Lint Markdown files | |
uses: docker://avtodev/markdown-lint:v1 | |
with: | |
args: './README.md doc' | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.12" | |
- name: Install poetry | |
run: python -m pip install poetry | |
- name: Install dependencies | |
run: poetry install | |
- name: Lint with ruff | |
run: poetry run ruff . | |
- name: Lint with mypy | |
run: poetry run mypy . | |
- name: Run tests | |
run: poetry run coverage run -m pytest | |
- name: Check coverage | |
run: poetry run coverage report |