2022-03-22 11:03:15 -04:00
|
|
|
name: Etcd Integration Test
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
pull_request:
|
|
|
|
|
2022-06-30 05:27:23 -04:00
|
|
|
# Abort runs of *this* workflow, if a new commit with the same ref is pushed.
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2022-03-22 11:03:15 -04:00
|
|
|
jobs:
|
|
|
|
integration-test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup Go environment
|
|
|
|
uses: actions/setup-go@v2.1.4
|
|
|
|
with:
|
|
|
|
go-version: "1.18"
|
|
|
|
|
|
|
|
- name: Test Constellation etcd integration
|
|
|
|
run: go test -v --race -cover -count=3 -tags integration
|
|
|
|
working-directory: coordinator/store
|