Skip to content

Commit

Permalink
run bench in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelkirk committed Dec 30, 2020
1 parent 7648af8 commit 82e437a
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,7 @@ jobs:
- run: cargo install cargo-all-features
- run: cargo build-all-features
- run: cargo test-all-features

test:
coverage:
name: coverage
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[skip ci]')"
Expand All @@ -66,3 +65,14 @@ jobs:
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: lcov.info
bench:
name: bench
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[skip ci]')"
container:
image: georust/geo-ci
steps:
- name: Checkout repository
uses: actions/checkout@v2
- run: cargo bench

0 comments on commit 82e437a

Please sign in to comment.