Skip to content

Bug fixes for PSHU and PULU #184

Bug fixes for PSHU and PULU

Bug fixes for PSHU and PULU #184

Workflow file for this run

name: Build Test Coverage
on: [push, pull_request]
jobs:
run:
runs-on: ubuntu-20.04
env:
OS: ubuntu-20.04
PYTHON: '3.8.10'
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.8.10
- name: Generate Report
run: |
pip install -r requirements.txt
coverage run --source=cocoasm -m unittest
coverage xml
- name: Codecov
uses: codecov/codecov-action@v3.1.0