1
0
Fork 0
mirror of https://github.com/romanz/electrs.git synced 2025-02-22 14:33:09 +01:00

Create rust.yml

This commit is contained in:
Roman Zeyde 2019-11-15 09:03:13 +02:00 committed by Roman Zeyde
parent 5549287ac6
commit cb81514a4d

17
.github/workflows/rust.yml vendored Normal file
View file

@ -0,0 +1,17 @@
name: Rust
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Check
run: cargo check --verbose
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose