-
Notifications
You must be signed in to change notification settings - Fork 783
39 lines (32 loc) · 1.07 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: ci
on:
pull_request:
push:
branches:
- main
- release/**
env:
CONSUL_LICENSE: ${{ secrets.CONSUL_LICENSE }}
jobs:
run-tests:
name: Run test cases (with consul${{ matrix.consul-ent-tag }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
go: [^1]
consul-ent-tag: ["", "-enterprise"]
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: Set up Go
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
with:
go-version: ${{ matrix.go }}
- name: Install Consul${{ matrix.consul-ent-tag }}, Vault and Nomad for integration testing
run: |
curl -fsSL https://apt.releases.hashicorp.com/gpg | sudo apt-key add -
sudo apt-add-repository "deb [arch=amd64] https://apt.releases.hashicorp.com $(lsb_release -cs) main"
sudo apt-get update && sudo apt-get install consul${{ matrix.consul-ent-tag }} vault nomad
- name: Run tests
run: |
make test-race