Skip to content

Commit

Permalink
Improve build pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
alexliesenfeld committed Oct 15, 2023
1 parent 00df88b commit 8899852
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "httpmock"
version = "0.7.0"
version = "0.7.0-rc.1"
authors = ["Alexander Liesenfeld <[email protected]>"]
edition = "2018"
description = "HTTP mocking library for Rust"
Expand Down
10 changes: 9 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@ test-local:
test-local:
cargo test --features=remote

.PHONY: test-standalone
test-standalone:
cargo test --features standalone

.PHONY: test-all
test-all:
cargo test --all-features

.PHONY: build-docker
build-docker:
docker build -t alexliesenfeld/httpmock:latest .
docker build .

0 comments on commit 8899852

Please sign in to comment.