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:
parent
5549287ac6
commit
cb81514a4d
1 changed files with 17 additions and 0 deletions
17
.github/workflows/rust.yml
vendored
Normal file
17
.github/workflows/rust.yml
vendored
Normal 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
|
Loading…
Add table
Reference in a new issue