From 6b9d813635af851bb1eef09d923749ba0768782b Mon Sep 17 00:00:00 2001 From: grdddj Date: Wed, 25 Oct 2023 11:19:37 +0200 Subject: [PATCH] chore(ci): remove controller tests on Github Actions --- .github/workflows/check-validation.yml | 22 +--------------------- 1 file changed, 1 insertion(+), 21 deletions(-) diff --git a/.github/workflows/check-validation.yml b/.github/workflows/check-validation.yml index 0f53be3..6543616 100644 --- a/.github/workflows/check-validation.yml +++ b/.github/workflows/check-validation.yml @@ -3,7 +3,7 @@ name: "[Check] validate trezor-user-env" on: [pull_request] jobs: - # Run code validattion + # Run code validation validation-check: runs-on: ubuntu-latest steps: @@ -19,23 +19,3 @@ jobs: run: nix-shell --run "poetry run make style_check" - name: Run code check run: nix-shell --run "poetry run make code_check" - - # Run controller test - controller-test: - needs: validation-check - runs-on: ubuntu-latest - env: - SDL_VIDEODRIVER: "dummy" - steps: - - uses: actions/checkout@v3 - - name: Setup Nix - uses: cachix/install-nix-action@v18 - with: - nix_path: nixpkgs=channel:nixos-unstable - - - name: Download emulator and bridge binaries - run: nix-shell --run "./src/binaries/firmware/bin/download.sh && ./src/binaries/trezord-go/bin/download.sh" - - name: "Install poetry" - run: nix-shell --run "poetry install" - - name: Run the tests - run: nix-shell --run "poetry run make test"