Skip to content

Added simple GitHub Actions workflow #1

Added simple GitHub Actions workflow

Added simple GitHub Actions workflow #1

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 Image
run: make build
- name: Linting
run: make lint
- name: Unit Test
run: make unittest