From 2c69b6cdaa2a129179fce0b538754aedc575f372 Mon Sep 17 00:00:00 2001 From: PaperChalice Date: Sun, 24 Nov 2024 10:50:02 +0800 Subject: [PATCH] rm just-test --- .github/workflows/just-test.yml | 41 --------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 .github/workflows/just-test.yml diff --git a/.github/workflows/just-test.yml b/.github/workflows/just-test.yml deleted file mode 100644 index 71a9d67a..00000000 --- a/.github/workflows/just-test.yml +++ /dev/null @@ -1,41 +0,0 @@ -name: test formula -on: - workflow_dispatch: - # Inputs the workflow accepts. - inputs: - name: - # Friendly description to be shown in the UI instead of 'name' - description: 'formula to test' - # Input has to be provided for the workflow to run - required: true - -jobs: - test-bot: - strategy: - matrix: - os: [macos-12] - runs-on: ${{ matrix.os }} - steps: - - name: Set up Homebrew - id: set-up-homebrew - uses: Homebrew/actions/setup-homebrew@master - - - name: Cache Homebrew Bundler RubyGems - id: cache - uses: actions/cache@v3 - with: - path: ${{ steps.set-up-homebrew.outputs.gems-path }} - key: ${{ runner.os }}-rubygems-${{ steps.set-up-homebrew.outputs.gems-hash }} - restore-keys: ${{ runner.os }}-rubygems- - - - name: Install Homebrew Bundler RubyGems - if: steps.cache.outputs.cache-hit != 'true' - run: brew install-bundler-gems - - - run: brew test-bot --only-cleanup-before - - - run: brew test-bot --only-setup - continue-on-error: true - - - run: brew install --include-test paperchalice/private/${{ github.event.inputs.name }} - - run: brew test -v ${{ github.event.inputs.name }}