Skip to content

Commit

Permalink
Merge pull request #14 from andylokandy/stable
Browse files Browse the repository at this point in the history
Stablize the search result
  • Loading branch information
andylokandy authored Feb 6, 2023
2 parents 82822be + a13ab88 commit 7d7f9df
Show file tree
Hide file tree
Showing 7 changed files with 428 additions and 59 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

name: Continuous integration

env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: 0

jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- rust: stable

steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
- name: Tests
run: |
cargo test --verbose
bench:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- rust: nightly

steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
- name: Tests
run: |
cargo bench --verbose
Loading

0 comments on commit 7d7f9df

Please sign in to comment.