Skip to content

fix(slack-gateway): preserve ACP reply whitespace #169

fix(slack-gateway): preserve ACP reply whitespace

fix(slack-gateway): preserve ACP reply whitespace #169

Workflow file for this run

name: go-tests
on:
pull_request:
paths:
- "integrations/acptext/**"
- "api/**"
- "operator/**"
- "integrations/github-app/**"
- "integrations/slack-gateway/**"
- ".github/workflows/go-tests.yml"
push:
branches:
- main
paths:
- "integrations/acptext/**"
- "api/**"
- "operator/**"
- "integrations/github-app/**"
- "integrations/slack-gateway/**"
- ".github/workflows/go-tests.yml"
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- name: acptext
working-directory: integrations/acptext
- name: api
working-directory: api
- name: operator
working-directory: operator
- name: integrations-github-app
working-directory: integrations/github-app
- name: integrations-slack-gateway
working-directory: integrations/slack-gateway
defaults:
run:
working-directory: ${{ matrix.working-directory }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: ${{ matrix.working-directory }}/go.mod
cache-dependency-path: ${{ matrix.working-directory }}/go.*
- name: Test
run: go test ./...
docker-build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- name: api
dockerfile: api/Dockerfile
- name: integrations-slack-gateway
dockerfile: integrations/slack-gateway/Dockerfile
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build image
run: docker build -f "${{ matrix.dockerfile }}" . -t "spritz-${{ matrix.name }}-ci"