Skip to content

Added make targets for virtual environment #11

Added make targets for virtual environment

Added make targets for virtual environment #11

name: CI Build
on:
push:
branches:
- main
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
pull_request:
branches:
- main
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Build Dev Image
run: make ci-build-dev
- name: Linting
run: make ci-lint
- name: Unit Test
run: make ci-unittest