1
0
Fork 0
mirror of https://github.com/romanz/electrs.git synced 2025-02-24 23:08:39 +01:00
electrs/.github/workflows/rust.yml
2019-12-02 10:20:11 +02:00

17 lines
251 B
YAML

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