mirror of
https://github.com/romanz/electrs.git
synced 2025-02-24 23:08:39 +01:00
17 lines
251 B
YAML
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
|