Skip to content

[RSDK-9936] Get the CI system to build the module again (#30) #36

[RSDK-9936] Get the CI system to build the module again (#30)

[RSDK-9936] Get the CI system to build the module again (#30) #36

Workflow file for this run

name: Run lint & unit tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
name: "Run unit tests"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
python --version
pip install --upgrade pip
pip --version
pip install -r requirements.txt
- name: Run lint
run: make lint
- name: Run unit tests
run: make test