summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorTim Oram <dev@mitmaro.ca>2024-02-16 08:56:27 -0330
committerTim Oram <dev@mitmaro.ca>2024-02-18 19:21:50 -0330
commit12235df6a584cf44ec985d06df0cae74dbfc7ebd (patch)
treec40ae616a0192b2beaa86c1794fd9ab3b44d337e /.github
parent46dd24b4583c2597dca41b14e9bfefb04ddff759 (diff)
Remove remaining references to workspaces
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/master-coverage.yml2
-rw-r--r--.github/workflows/pull-request.yml6
2 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/master-coverage.yml b/.github/workflows/master-coverage.yml
index 3b702b4..72e4041 100644
--- a/.github/workflows/master-coverage.yml
+++ b/.github/workflows/master-coverage.yml
@@ -20,7 +20,7 @@ jobs:
crate: cargo-tarpaulin
- name: Run cargo-tarpaulin
run: |
- cargo +nightly tarpaulin --workspace --all-features --ignore-tests --line --output-dir coverage --timeout 10 --out Lcov
+ cargo +nightly tarpaulin --all-features --ignore-tests --line --output-dir coverage --timeout 10 --out Lcov
- name: Post to Coveralls
uses: coverallsapp/github-action@v2
with:
diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml
index 061c4d4..cff77ef 100644
--- a/.github/workflows/pull-request.yml
+++ b/.github/workflows/pull-request.yml
@@ -42,7 +42,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- - run: cargo doc --all-features --workspace
+ - run: cargo doc --all-features
format:
runs-on: ubuntu-latest
timeout-minutes: 10
@@ -71,7 +71,7 @@ jobs:
crate: cargo-tarpaulin
- name: Run cargo-tarpaulin
run: |
- cargo +nightly tarpaulin --workspace --all-features --ignore-tests --line --output-dir coverage --timeout 10 --out Lcov
+ cargo +nightly tarpaulin --all-features --ignore-tests --line --output-dir coverage --timeout 10 --out Lcov
- name: Post to Coveralls
uses: coverallsapp/github-action@v2
with:
@@ -105,7 +105,7 @@ jobs:
- name: Test
env:
RUSTFLAGS: '--cap-lints warn'
- run: cargo test --target x86_64-pc-windows-msvc --workspace
+ run: cargo test --target x86_64-pc-windows-msvc
- name: Build and Run
env:
RUSTFLAGS: '--cap-lints warn'