Skip to content

Commit

Permalink
Merge pull request #88 from vrbouza/master
Browse files Browse the repository at this point in the history
Added link & reference to the sandbox.bio tutorial.
  • Loading branch information
johnlees authored Jan 23, 2025
2 parents d66b021 + 90e07bc commit d12a09f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 13 deletions.
20 changes: 8 additions & 12 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,29 +22,25 @@ jobs:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
toolchain: stable
override: true
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose --no-fail-fast
- name: Install cargo-llvm-cov and run tests
run: cargo install cargo-llvm-cov && cargo llvm-cov --lcov --output-path=./lcov.info
env:
CARGO_INCREMENTAL: '0'
RUSTFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests'
RUSTDOCFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests'
- name: rust-grcov
# You may pin to the exact commit or the version.
# uses: actions-rs/grcov@bb47b1ed7883a1502fa6875d562727ace2511248
uses: actions-rs/[email protected]
with:
config: .github/config/grcov.yml
RUSTFLAGS: '-Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cinstrument-coverage'
RUSTDOCFLAGS: '-Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cinstrument-coverage'
- name: Codecov
# You may pin to the exact commit or the version.
# uses: codecov/codecov-action@81cd2dc8148241f03f5839d295e000b8f761e378
uses: codecov/[email protected]
# uses: codecov/[email protected]
uses: codecov/[email protected]
with:
# Repository upload token - get it from codecov.io. Required only for private repositories
token: ${{ secrets.CODECOV_TOKEN }}
file: ./lcov.info
# Specify whether the Codecov output should be verbose
verbose: true
fail_ci_if_error: true
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ska"
version = "0.3.11"
version = "0.3.12"
authors = [
"John Lees <[email protected]>",
"Simon Harris <[email protected]>",
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ https://genome.cshlp.org/content/34/10/1661.abstract
Can be found at https://docs.rs/ska. We also have some tutorials available:

- [From genomes to trees](https://www.bacpop.org/guides/building_trees_with_ska/).
- [From genomes to trees - Interactive tutorial in sandbox.bio](https://sandbox.bio/tutorials/ska2-intro).
- [Filtering options](https://www.bacpop.org/guides/snp_alignment_with_ska/).

## Installation
Expand Down

0 comments on commit d12a09f

Please sign in to comment.