mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
23 lines
481 B
YAML
23 lines
481 B
YAML
|
name: Etcd Integration Test
|
||
|
|
||
|
on:
|
||
|
workflow_dispatch:
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
pull_request:
|
||
|
|
||
|
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
|