Skip to content

type: [feat], message: Add commit lint option. #132

type: [feat], message: Add commit lint option.

type: [feat], message: Add commit lint option. #132

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
- name: Run Unit Tests
run: |
make check
check-integration:
needs: check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
- name: Run Integration Tests
run: |
make check-integration