forked from vmware-labs/reconciler-runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (36 loc) · 834 Bytes
/
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
name: CI
on:
push:
branches:
- '**'
- '!dependabot/**'
pull_request: {}
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v4
with:
go-version: 1.19.x
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Regenerate files
run: |
./hack/update-codegen.sh
- name: Check for drift in generated files
run: |
git diff --exit-code .
- name: Test
run: |
go test -v ./... -coverprofile cover.out
- name: Report coverage
run: |
bash <(curl -s https://codecov.io/bash)
env:
CODECOV_TOKEN: 16421b44-8cd3-49d9-a01e-189c5141009e