We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6173318 commit 9e7ce50Copy full SHA for 9e7ce50
.github/workflows/release.yml
@@ -0,0 +1,18 @@
1
+name: release
2
+
3
+on:
4
+ release:
5
+ types:
6
+ - released
7
8
+jobs:
9
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - name: Install Rust
14
+ run: rustup update stable
15
+ - name: Build and publish
16
+ run: |
17
+ cargo login ${{ secrets.CRATESIO_TOKEN }}
18
+ cargo publish
.github/workflows/test.yml
@@ -0,0 +1,21 @@
+name: test
+ pull_request:
+ branches:
+ - dev
+ - master
+ push:
+ test:
+ name: Run unit-tests
19
20
+ - name: Run tests
21
+ run: cargo test --all-features
0 commit comments