Skip to content

update reference CCIT->XMODEM per https://github.com/Nicoretti/crc/bl… #154

update reference CCIT->XMODEM per https://github.com/Nicoretti/crc/bl…

update reference CCIT->XMODEM per https://github.com/Nicoretti/crc/bl… #154

Workflow file for this run

---
name: Sanity
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install .[test]
- name: Test with pytest
run: |
make test
- name: Upload coverage to codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}