diff options
| author | Henry Gressmann <mail@henrygressmann.de> | 2024-01-10 01:11:55 +0100 |
|---|---|---|
| committer | Henry Gressmann <mail@henrygressmann.de> | 2024-01-10 01:11:55 +0100 |
| commit | 525208ec8e86eaf57feb412e6c6c71e6d56d3cb3 (patch) | |
| tree | 54e6192e868e2afd23a724fce0666106248db34b /.github/workflows/test.yaml | |
| parent | 8077653ddf3d4c555bc90d1647f4a3e9eed576a5 (diff) | |
chore: improve documentation, tests
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
Diffstat (limited to '.github/workflows/test.yaml')
| -rw-r--r-- | .github/workflows/test.yaml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index c4ae296..d65198f 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -20,10 +20,10 @@ jobs: rustup default stable - name: Build (stable) - run: cargo +stable build --verbose + run: cargo +stable build --all - name: Run tests (stable) - run: cargo +stable test --verbose + run: cargo +stable test --all test-no-std: name: Test without default features on nightly Rust @@ -37,7 +37,7 @@ jobs: rustup default nightly - name: Build (nightly, no default features) - run: cargo +nightly build --verbose --no-default-features + run: cargo +nightly build --all --no-default-features - name: Run tests (nightly, no default features) - run: cargo +nightly test --verbose --no-default-features + run: cargo +nightly test --all --no-default-features |
