Skip to content

Commit 97c1cde

Browse files
authored
Feature: add ci workflow (#1)
1 parent e13e09e commit 97c1cde

3 files changed

Lines changed: 31 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: CI
2+
on:
3+
pull_request:
4+
branches:
5+
- main
6+
schedule:
7+
- cron: '0 17 * * *'
8+
workflow_dispatch:
9+
permissions:
10+
contents: read
11+
pull-requests: read
12+
jobs:
13+
compile-with-bazel:
14+
runs-on:
15+
group: Default
16+
labels: trpc-cpp-plugins-ci
17+
steps:
18+
- name: Checkout
19+
uses: actions/checkout@v3
20+
- name: Test
21+
run: |
22+
./clean.sh
23+
bazel test //trpc/...

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
[中文](./README.zh_CN.md)
22

3-
[TOC]
3+
[![LICENSE](https://img.shields.io/badge/license-Apache--2.0-green.svg)](https://github.com/trpc-ecosystem/cpp-tracing-jaeger/blob/main/LICENSE)
4+
[![Releases](https://img.shields.io/github/release/trpc-ecosystem/cpp-tracing-jaeger.svg?style=flat-square)](https://github.com/trpc-ecosystem/cpp-tracing-jaeger/releases)
5+
[![Build Status](https://github.com/trpc-ecosystem/cpp-tracing-jaeger/actions/workflows/ci.yml/badge.svg)](https://github.com/trpc-ecosystem/cpp-tracing-jaeger/actions/workflows/ci.yml)
6+
[![Coverage](https://codecov.io/gh/trpc-ecosystem/cpp-tracing-jaeger/branch/main/graph/badge.svg)](https://app.codecov.io/gh/trpc-ecosystem/cpp-tracing-jaeger/tree/main)
47

58
# Overview
69

README.zh_CN.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
[English](./README.md)
22

3-
[TOC]
3+
[![LICENSE](https://img.shields.io/badge/license-Apache--2.0-green.svg)](https://github.com/trpc-ecosystem/cpp-tracing-jaeger/blob/main/LICENSE)
4+
[![Releases](https://img.shields.io/github/release/trpc-ecosystem/cpp-tracing-jaeger.svg?style=flat-square)](https://github.com/trpc-ecosystem/cpp-tracing-jaeger/releases)
5+
[![Build Status](https://github.com/trpc-ecosystem/cpp-tracing-jaeger/actions/workflows/ci.yml/badge.svg)](https://github.com/trpc-ecosystem/cpp-tracing-jaeger/actions/workflows/ci.yml)
6+
[![Coverage](https://codecov.io/gh/trpc-ecosystem/cpp-tracing-jaeger/branch/main/graph/badge.svg)](https://app.codecov.io/gh/trpc-ecosystem/cpp-tracing-jaeger/tree/main)
47

58
# 前言
69

0 commit comments

Comments
 (0)