Sha256: e6fb4276c26b121abe177914b9e3afd403f94a6b2fd203276e7f53e8e9a7f86f
Contents?: true
Size: 820 Bytes
Versions: 9
Compression:
Stored size: 820 Bytes
Contents
name: ci on: pull_request: 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
9 entries across 9 versions & 1 rubygems