Skip to content

Adds publish_map to the RobotSession #205

Adds publish_map to the RobotSession

Adds publish_map to the RobotSession #205

Workflow file for this run

name: Test and Lint
on: pull_request
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
os: [windows-latest]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install .[test]
- name: Test with pytest
run: |
pytest inorbit_edge/tests/
- name: Upload codecov
uses: codecov/codecov-action@v1