Skip to content

Commit

Permalink
Add CI build and unit-test for custom-metrics-stackdriver-adapter
Browse files Browse the repository at this point in the history
  • Loading branch information
CatherineF-dev committed Jan 10, 2024
1 parent 8d6ceab commit bc8e275
Showing 1 changed file with 63 additions and 0 deletions.
63 changes: 63 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
name: continuous-integration

on:
push:
branches:
- master
tags:
- v0.*
pull_request:
branches:
- master

permissions:
contents: read

env:
SUDO: sudo
GO_VERSION: "^1.21"

jobs:
ci-unit-tests-custom-metrics-stackdriver-adapter:
name: ci-unit-tests-custom-metrics-stackdriver-adapter
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4

- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
id: go

- name: Setup environment
run: |
make install-tools
- name: Unit tests
run: |
cd custom-metrics-stackdriver-adapter:
make test-unit
ci-build-custom-metrics-stackdriver-adapter:
name: ci-build-custom-metrics-stackdriver-adapter
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4

- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
id: go

- name: Setup environment
run: |
make install-tools
- name: Build
run: |
cd custom-metrics-stackdriver-adapter:
make build

0 comments on commit bc8e275

Please sign in to comment.