Skip to content

Merge pull request #20 from NeowayLabs/fix-commit-lint-to-allow-merge… #145

Merge pull request #20 from NeowayLabs/fix-commit-lint-to-allow-merge…

Merge pull request #20 from NeowayLabs/fix-commit-lint-to-allow-merge… #145

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