From 24545824d79dc4fe31e349f15abb31ebb98cb375 Mon Sep 17 00:00:00 2001 From: Sameer Puri Date: Thu, 12 Aug 2021 18:56:29 -0400 Subject: [PATCH] lib: specify correct package name --- .github/workflows/lib.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lib.yml b/.github/workflows/lib.yml index 99d406b..f235688 100644 --- a/.github/workflows/lib.yml +++ b/.github/workflows/lib.yml @@ -1,4 +1,4 @@ -name: Build, test, and publish coverage for svg2gcode-lib +name: Build, test, and publish coverage for svg2gcode on: [push, pull_request] @@ -11,7 +11,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Build - run: cargo build -p svg2gcode-lib + run: cargo build -p svg2gcode coverage: runs-on: ubuntu-latest steps: @@ -31,14 +31,14 @@ jobs: use-tool-cache: true - uses: actions-rs/cargo@v1 with: - command: build -p svg2gcode-lib + command: build -p svg2gcode env: RUSTFLAGS: '-Zinstrument-coverage' RUSTDOCFLAGS: '-Zinstrument-coverage' - uses: actions-rs/cargo@v1 with: command: test - args: --all-features --no-fail-fast -p svg2gcode-lib + args: --all-features --no-fail-fast -p svg2gcode env: RUSTFLAGS: '-Zinstrument-coverage' RUSTDOCFLAGS: '-Zinstrument-coverage'