Skip to content

Check relative branches for byte overflows #200

Check relative branches for byte overflows

Check relative branches for byte overflows #200

Workflow file for this run

name: Build Test Coverage
on: [pull_request, workflow_dispatch]
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.8.12
- name: Update PIP
run: python -m pip install --upgrade pip
- name: Install Requirements
run: pip install -r requirements.txt
- name: Generate Report
run: |
coverage run --source=cocoasm -m unittest
coverage xml
- name: Codecov
uses: codecov/codecov-action@v4.2.0
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}