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 <[email protected]>
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/[email protected]
+ - uses: codecov/[email protected]