Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
unrenamed committed Aug 29, 2023
1 parent bbc2549 commit 71d0bee
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,8 @@ jobs:
cargo +nightly tarpaulin --verbose --all-features --workspace --timeout 120 --out Lcov --output-dir ./coverage
- name: Upload to coveralls.io
uses: coverallsapp/github-action@v2
- name: Build Docker image
uses: docker/build-push-action@v4
with:
context: .
file: ./Dockerfile
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
FROM rustlang/rust:nightly-bullseye
WORKDIR /app
COPY . /app
RUN rustc -V
RUN cargo install cargo-tarpaulin
RUN cargo +nightly tarpaulin --verbose --all-features --workspace --timeout 120 --out HTML --output-dir ./coverage

0 comments on commit 71d0bee

Please sign in to comment.