diff --git a/.github/workflows/0-6-test-gameroom-ui.yaml b/.github/workflows/0-6-test-gameroom-ui.yaml deleted file mode 100644 index 5fed6e667..000000000 --- a/.github/workflows/0-6-test-gameroom-ui.yaml +++ /dev/null @@ -1,26 +0,0 @@ -name: 0-6 Test Gameroom UI - -on: - pull_request: - -env: - CARGO_TERM_COLOR: always - -concurrency: - group: "${{ github.ref }}-${{ github.workflow }}" - cancel-in-progress: true - -jobs: - gameroom_ui_tests: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - - name: Display envvars - run: env - - - name: Install Just - run: curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | sudo bash -s -- --to /usr/local/bin - - - name: Gameroom UI Tests - run: just ci-test-gameroom-ui diff --git a/.github/workflows/0-6-test-gameroom.yaml b/.github/workflows/0-6-test-gameroom.yaml deleted file mode 100644 index e47ae1ddd..000000000 --- a/.github/workflows/0-6-test-gameroom.yaml +++ /dev/null @@ -1,26 +0,0 @@ -name: 0-6 Test Gameroom - -on: - pull_request: - -env: - CARGO_TERM_COLOR: always - -concurrency: - group: "${{ github.ref }}-${{ github.workflow }}" - cancel-in-progress: true - -jobs: - gameroom_tests: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - - name: Display envvars - run: env - - - name: Install Just - run: curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | sudo bash -s -- --to /usr/local/bin - - - name: Gameroom Tests - run: just ci-test-gameroom diff --git a/justfile b/justfile index c6889df40..e5b10232f 100644 --- a/justfile +++ b/justfile @@ -59,7 +59,6 @@ ci: just ci-lint-dockerfiles just ci-lint-openapi just ci-shellcheck - just ci-test-gameroom ci-lint-client: #!/usr/bin/env sh @@ -79,10 +78,6 @@ ci-shellcheck: docker run -t --rm -v $(pwd):/mnt koalaman/shellcheck:stable \ cli/packaging/ubuntu/completions/splinter -ci-test-gameroom: test-gameroom - -ci-test-gameroom-ui: test-gameroom-ui - clean: cargo clean