Skip to content

Create a Github action for MCAD CI check #9

Create a Github action for MCAD CI check

Create a Github action for MCAD CI check #9

Workflow file for this run

# This workflow will build mcad and run unit test and E2E tests
name: MCAD-CI
on:
pull_request:
branches:
- 'main'
- 'release-*'
jobs:
MCAD-CI:
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v3
with:
ref: "refs/pull/${{ github.event.number }}/merge"
fetch-depth: 0
- name: Get tag and Branch name
run: |
LATEST_TAG=$(git describe --abbrev=0 --tags)
echo "Latest tag on target branch: $LATEST_TAG"
echo "GIT_BRANCH=${{ github.event.pull_request.head.ref }}" >> $GITHUB_ENV
echo "TAG=$LATEST_TAG" >> $GITHUB_ENV
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18.10
- name: Build
run:
make mcad-controller
- name: Run Unit tests
run: make run-test
- name: Build Image
run: |
make images -e GIT_BRANCH=$GIT_BRANCH TAG=$TAG
- name: Run E2E tests
run: |
make run-e2e -e GIT_BRANCH=$GIT_BRANCH TAG=$TAG