Merge remote-tracking branch 'origin/master'

This commit is contained in:
repl.it user
2020-08-26 18:57:29 +00:00

22
.github/workflows/rust.yml vendored Normal file
View File

@@ -0,0 +1,22 @@
name: Rust
on:
release:
types: [ published ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: publish
run: cargo publish --verbose