Skip to content

Fix typo in CTR bitfield definition #300

Fix typo in CTR bitfield definition

Fix typo in CTR bitfield definition #300

Workflow file for this run

name: Unit tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install PyYAML
run: |
pip3 install -r requirements.txt
pip3 install coverage
- name: Test error outputs
run: coverage run -m unittest -b
- name: Generate coverage
run: coverage xml
- name: Upload coverage
uses: codecov/codecov-action@v2