Sha256: 07aaa21eb871f14389e3335eea33cc68c7f022b6442522ad1877f261dee42ddf
Contents?: true
Size: 804 Bytes
Versions: 10
Compression:
Stored size: 804 Bytes
Contents
name: ci on: workflow_dispatch: inputs: git-ref: description: Git Ref default: master required: true jobs: test: runs-on: ubuntu-20.04-16core env: RAILS_ENV: test RAILS_MASTER_KEY: ${{ secrets.RAILS_MASTER_KEY }} steps: - name: Set up MySQL run: | sudo /etc/init.d/mysql start sudo mysql -uroot -proot -e"ALTER USER 'root'@'localhost' IDENTIFIED WITH caching_sha2_password BY '';" - name: Checkout code uses: actions/checkout@v3 with: ref: ${{ github.event.inputs.git-ref }} - name: Install Ruby and gems uses: ruby/setup-ruby@v1 with: bundler-cache: true - name: Setup run: bin/setup - name: Run tests run: bin/ci
Version data entries
10 entries across 10 versions & 1 rubygems