Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,3 +126,36 @@ jobs:
run: |
cargo login ${{ secrets.CARGO_TOKEN }}
cargo publish

benchmark:
name: Benchmark
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master'

steps:
- uses: actions/checkout@v4

- name: Install Rust
uses: dtolnay/rust-toolchain@stable

- name: Cache dependencies
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-bench-${{ hashFiles('**/Cargo.lock') }}

- name: Run benchmarks
run: cargo bench

- name: Store benchmark result
uses: benchmark-action/github-action-benchmark@v1
with:
tool: 'cargo'
output-file-path: target/criterion/*/base/estimates.json
github-token: ${{ secrets.GITHUB_TOKEN }}
auto-push: true
comment-on-alert: true
alert-threshold: '200%'
23 changes: 0 additions & 23 deletions .travis.yml

This file was deleted.

9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# tst

[![Build Status](https://travis-ci.org/billyevans/tst.svg?branch=master)](https://travis-ci.org/billyevans/tst)
[![Coverage Status](https://coveralls.io/repos/billyevans/tst/badge.svg?branch=master)](https://coveralls.io/r/billyevans/tst?branch=master)
[![CI](https://github.com/billyevans/tst/actions/workflows/rust.yml/badge.svg)](https://github.com/billyevans/tst/actions/workflows/rust.yml)
[![Coverage Status](https://coveralls.io/repos/github/billyevans/tst/badge.svg?branch=master)](https://coveralls.io/github/billyevans/tst?branch=master)
[![crates.io](http://meritbadge.herokuapp.com/tst)](https://crates.io/crates/tst)
[![API](https://docs.rs/tst/badge.svg)](https://docs.rs/tst/)

Expand All @@ -23,7 +22,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
tst = "0.10.*"
tst = "0.12.*"
```

## Quick Start
Expand Down Expand Up @@ -123,6 +122,6 @@ https://en.wikipedia.org/wiki/Ternary_search_tree

# License

TST is distributed under the terms of the MIT license.
TST is distributed under the terms of the MIT license.

See [LICENSE-MIT](LICENSE-MIT), and [COPYRIGHT](COPYRIGHT) for details.
20 changes: 0 additions & 20 deletions deploy-docs.sh

This file was deleted.

7 changes: 0 additions & 7 deletions deploy.sh

This file was deleted.

8 changes: 0 additions & 8 deletions install-kcov.sh

This file was deleted.