This repository was archived by the owner on Apr 19, 2026. It is now read-only.
chore: Migrate gsutil usage to gcloud storage #96
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "CI tests" | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| push: | |
| branches: | |
| - master | |
| workflow_dispatch: | |
| jobs: | |
| tests: | |
| if: ${{ github.repository == 'GoogleCloudPlatform/ruby-docker' }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install Ruby 2.7 | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: "2.7" | |
| - name: Checkout repo | |
| uses: actions/checkout@v2 | |
| - name: Install dependencies | |
| shell: bash | |
| run: "bundle install && gem install --no-document toys" | |
| - name: Build | |
| shell: bash | |
| run: toys build | |
| - name: Test | |
| shell: bash | |
| run: toys test --faster |