Skip to content

Copy install.sh script to under the scripts directory. Once flowpipe.… #850

Copy install.sh script to under the scripts directory. Once flowpipe.…

Copy install.sh script to under the scripts directory. Once flowpipe.… #850

name: Test - Lint and Test
on:
push:
tags:
- v*
branches:
- main
- "v*"
workflow_dispatch:
pull_request:
jobs:
golangci:
name: Lint and Test
runs-on: ubuntu-latest
steps:
- name: Checkout Flowpipe repository
uses: actions/checkout@v3
with:
path: flowpipe
- name: Checkout Pipe Fittings Components repository
uses: actions/checkout@v3
with:
ssh-key: ${{ secrets.PIPE_FITTINGS_DEPLOY_PRIVATE_KEY }}
repository: turbot/pipe-fittings
path: pipe-fittings
ref: main
- name: Checkout Flowpipe SDK Go repository
uses: actions/checkout@v3
with:
ssh-key: ${{ secrets.FLOWPIPE_GO_SDK_DEPLOY_PRIVATE_KEY }}
repository: turbot/flowpipe-sdk-go
path: flowpipe-sdk-go
ref: main
# this is required, check golangci-lint-action docs
- uses: actions/setup-go@v4
with:
go-version: '1.21'
cache: false # setup-go v4 caches by default, do not change this parameter, check golangci-lint-action doc: https://github.com/golangci/golangci-lint-action/pull/704
- name: Build UI
run: make build-ui
working-directory: flowpipe
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.55.2
args: --timeout=15m
working-directory: flowpipe
# Install MailHog for SMTP mail testing
- name: Install MailHog
run: |
go install github.com/mailhog/MailHog@v1.0.1
- name: Run tests
run: make test
working-directory: flowpipe