Skip to content

Commit

Permalink
workflow for easy tests
Browse files Browse the repository at this point in the history
  • Loading branch information
holtjma committed Sep 9, 2024
1 parent 3d349ff commit 0c065ba
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/test-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Continuous integration
on: [push, pull_request]

jobs:
test:
name: cargo test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- run: cargo test --all-features --release
- run: cargo clippy -- -D warnings
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[![Build status](https://github.com/PacificBiosciences/waffle_con/actions/workflows/test-ci.yml/badge.svg)](https://github.com/PacificBiosciences/waffle_con/actions)


# waffle_con
This crate contains our implementation of the Dynamic WFA (DWFA) consensus algorithms, or `waffle_con`.
The algorithms contained within were built to support the consensus steps of [pb-StarPhase](https://github.com/PacificBiosciences/pb-StarPhase).
Expand Down

0 comments on commit 0c065ba

Please sign in to comment.