aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/tests.yaml
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2023-12-03 02:00:32 -0500
committerJesse Luehrs <doy@tozt.net>2023-12-03 17:25:09 -0500
commit1895e6ca5338756bb3c8879ab3f6427ee476670a (patch)
tree5e4aa37273bb3da4a516b7dde2218cc9d6466159 /.github/workflows/tests.yaml
parent1007cac2ac9c20496a5ec5a9a34b8ff84f874983 (diff)
downloadpty-process-1895e6ca5338756bb3c8879ab3f6427ee476670a.tar.gz
pty-process-1895e6ca5338756bb3c8879ab3f6427ee476670a.zip
wiptest
Diffstat (limited to '.github/workflows/tests.yaml')
-rw-r--r--.github/workflows/tests.yaml12
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml
index 5358d9e..4ac17d2 100644
--- a/.github/workflows/tests.yaml
+++ b/.github/workflows/tests.yaml
@@ -11,7 +11,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- - run: cargo build --all-targets
+ - run: cargo build --all-targets --all-features
build-musl:
runs-on: ubuntu-latest
steps:
@@ -20,19 +20,19 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
with:
targets: x86_64-unknown-linux-musl
- - run: TARGET_CC=clang-11 TARGET_AR=llvm-ar-11 cargo build --all-targets --target x86_64-unknown-linux-musl
+ - run: TARGET_CC=clang-11 TARGET_AR=llvm-ar-11 cargo build --all-targets --all-features --target x86_64-unknown-linux-musl
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- - run: cargo build --all-targets
+ - run: cargo build --all-targets --all-features
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- - run: cargo test
+ - run: cargo test --all-targets --all-features
test-musl:
runs-on: ubuntu-latest
steps:
@@ -41,13 +41,13 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
with:
targets: x86_64-unknown-linux-musl
- - run: TARGET_CC=clang-11 TARGET_AR=llvm-ar-11 cargo test --target x86_64-unknown-linux-musl
+ - run: TARGET_CC=clang-11 TARGET_AR=llvm-ar-11 cargo test --target x86_64-unknown-linux-musl --all-targets --all-features
test-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- - run: cargo test
+ - run: cargo test --all-targets --all-features
lint:
runs-on: ubuntu-latest
steps: