refactor: add integration/notifier to workspace, tidy unused code in … #770
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test - Integration | |
on: | |
push: | |
tags: | |
- v* | |
branches: | |
- main | |
- "v*" | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
golangci: | |
name: Integration 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 | |
- 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: Run tests | |
run: make integration-test | |
working-directory: flowpipe |