Skip to content

Update the workflow to use latest Python version. #179

Update the workflow to use latest Python version.

Update the workflow to use latest Python version. #179

Workflow file for this run

name: Build Test Coverage
on: [push, pull_request]
jobs:
run:
runs-on: ubuntu-latest
env:
OS: ubuntu-latest
PYTHON: '3.8.10'
steps:
- name: Checkout
uses: actions/checkout@v2.3.4
- name: Setup Python
uses: actions/setup-python@v2.2.2
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