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

18 lines
251 B
YAML
Raw Normal View History

2019-11-15 09:03:13 +02:00
name: Rust
2019-11-19 22:30:48 +02:00
on: [push, pull_request]
2019-11-15 09:03:13 +02:00
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Check
2019-12-02 10:20:11 +02:00
run: cargo check
2019-11-15 09:03:13 +02:00
- name: Build
2019-12-02 10:20:11 +02:00
run: cargo build
2019-11-15 09:03:13 +02:00
- name: Run tests
2019-12-02 10:20:11 +02:00
run: cargo test