-
Notifications
You must be signed in to change notification settings - Fork 45
80 lines (76 loc) · 2.09 KB
/
ci.yaml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
name: ci
on:
push:
branches:
- feature/workflows
- main
pull_request:
branches:
- main
env:
GO_VERSION: '1.21'
jobs:
lint:
runs-on: ubuntu-latest
env:
GOPATH: /home/runner/work/open-feature/go-sdk-contrib
GOBIN: /home/runner/work/open-feature/go-sdk-contrib/bin
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Environment
run: |
echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
- name: Module cache
uses: actions/cache@v4
env:
cache-name: go-mod-cache
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('**/go.sum') }}
- name: Run workspace init
run: make workspace-init
- name: Run linter
run: make lint
test:
runs-on: ubuntu-latest
services:
# flagd-testbed for flagd-provider e2e tests
flagd:
image: ghcr.io/open-feature/flagd-testbed:v0.5.6
ports:
- 8013:8013
# sync-testbed for flagd-provider e2e tests
sync:
image: ghcr.io/open-feature/sync-testbed:v0.5.6
ports:
- 9090:9090
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Environment
run: |
echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
- name: Module cache
uses: actions/cache@v4
env:
cache-name: go-mod-cache
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('**/go.sum') }}
- name: Run workspace init
run: make workspace-init
- name: Run tests, including e2e
run: make e2e