mirror of
https://github.com/romanz/electrs.git
synced 2025-02-25 07:17:41 +01:00
18 lines
267 B
YAML
18 lines
267 B
YAML
|
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
|