Skip to content

Commit

Permalink
Merge #585
Browse files Browse the repository at this point in the history
585: ci bench r=frewsxcv a=michaelkirk

- [x] I agree to follow the project's [code of conduct](https://github.com/georust/geo/blob/master/CODE_OF_CONDUCT.md).
- [ ] I added an entry to `CHANGES.md` if knowledge of this change could be valuable to users.
---

Fixes #582 

Co-authored-by: Michael Kirk <michael.code@endoftheworl.de>
  • Loading branch information
bors[bot] and michaelkirk committed Dec 31, 2020
2 parents b35a325 + 4cf5939 commit 5a85dde
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 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 --no-run

3 changes: 2 additions & 1 deletion bors.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ status = [
"geo-types",
"geo",
"geo-postgis",
"coverage"
"coverage",
"bench"
]

0 comments on commit 5a85dde

Please sign in to comment.