Skip to content

Commit

Permalink
Initial version of UI tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexhuszagh committed Nov 20, 2022
1 parent ab99baf commit a1f74d6
Show file tree
Hide file tree
Showing 85 changed files with 1,531 additions and 235 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@ jobs:
- name: Run unit tests
run: cargo test --locked --all-targets --workspace --all-features
timeout-minutes: 10

- name: Run ignored unit tests
run: cargo test --locked --all-targets --workspace --all-features -- --ignored
timeout-minutes: 10
check:
runs-on: ubuntu-latest
outputs:
Expand Down Expand Up @@ -347,6 +351,23 @@ jobs:
TARGET: aarch64-unknown-linux-gnu
shell: bash

rest-args:
needs: [test, check]
runs-on: ubuntu-latest
if: github.actor == 'bors[bot]'
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-rust

- name: LLVM instrument coverage
uses: ./.github/actions/cargo-llvm-cov
with:
name: integration-remote

- name: Run Rest Args Test
run: ./ci/test-rest-args.sh
shell: bash

publish:
needs: [build, check, fmt, clippy, cargo-deny]
runs-on: ubuntu-latest
Expand Down
Loading

0 comments on commit a1f74d6

Please sign in to comment.