Skip to content

crc7, reverse channel (RC PDU), parsing from hytera IPSC and necessit… #161

crc7, reverse channel (RC PDU), parsing from hytera IPSC and necessit…

crc7, reverse channel (RC PDU), parsing from hytera IPSC and necessit… #161

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 }}