You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by rs...@apache.org on 2022/01/07 08:37:25 UTC

[skywalking-rust] branch master updated: Add GitHub action for test. (#7)

This is an automated email from the ASF dual-hosted git repository.

rshimizu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking-rust.git


The following commit(s) were added to refs/heads/master by this push:
     new 652c23a  Add GitHub action for test. (#7)
652c23a is described below

commit 652c23a4fd90a23fb4a67c9342efc23a7efa6b1e
Author: dkkb <82...@users.noreply.github.com>
AuthorDate: Fri Jan 7 16:37:18 2022 +0800

    Add GitHub action for test. (#7)
---
 .github/workflows/test.yaml | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml
new file mode 100644
index 0000000..91b5a22
--- /dev/null
+++ b/.github/workflows/test.yaml
@@ -0,0 +1,22 @@
+name: test
+on:
+  pull_request:
+  push:
+    branches:
+      - master
+    tags:
+      - 'v*'
+jobs:
+  test:
+    runs-on: ubuntu-latest
+    steps:
+      - uses: actions/checkout@v2
+        with:
+          submodules: true
+      - uses: actions-rs/toolchain@v1
+        with:
+          profile: minimal
+          toolchain: stable
+          override: true
+      - uses: actions-rs/tarpaulin@v0.1
+      - uses: codecov/codecov-action@v2.1.0