Skip to content

Commit 7a3d9f5

Browse files
leftwoAlan Hanson
andauthored
Remove cargo nextest from github workflow, out of space (#1846)
The github provided ubuntu image/host/container has a limited amount of space, and we have apparently hit that limit. We could figure it out and update it, but this test is already a duplicate of what we do in buildomat, so I just pulled out the test part, so now it just does cargo fmt/build/check. --------- Co-authored-by: Alan Hanson <[email protected]>
1 parent ee6d6e3 commit 7a3d9f5

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

.github/workflows/rust.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
2525
- name: Test build documentation
2626
run: cargo doc
27-
build-and-test:
27+
build:
2828
runs-on: ubuntu-latest
2929
steps:
3030
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
@@ -35,10 +35,6 @@ jobs:
3535
run: sudo apt-get install libsqlite3-dev
3636
- name: Build
3737
run: cargo build --verbose
38-
- name: Install latest nextest release
39-
uses: taiki-e/install-action@nextest
40-
- name: Test nextest all
41-
run: cargo nextest run --verbose
4238
clippy:
4339
runs-on: ubuntu-latest
4440
steps:

0 commit comments

Comments
 (0)