Skip to content

Commit

Permalink
feat(ci): switch to nextest (#490)
Browse files Browse the repository at this point in the history
* feat(ci): switch to nextest

Signed-off-by: Alex Chi <iskyzh@gmail.com>

* fix ci

Signed-off-by: Alex Chi <iskyzh@gmail.com>
  • Loading branch information
skyzh committed Feb 17, 2022
1 parent d5cb9a8 commit 2d87650
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,18 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
- name: Download nextest
run: curl -fsSL https://get.nexte.st/latest/linux | tar zxf - -C ${CARGO_HOME:-~/.cargo}/bin
- name: Test
uses: actions-rs/cargo@v1
with:
command: nextest
args: run --no-fail-fast --all-features --locked
- name: Doctest
uses: actions-rs/cargo@v1
with:
command: test
args: --no-fail-fast --all-features --locked
args: --doc --no-fail-fast --all-features --locked

tpch-test:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 2d87650

Please sign in to comment.