Sha256: 3e723c4ff0cee25d52f268d32b68e54473749ed6de3993e5b87f0d96f4aad53f

Contents?: true

Size: 741 Bytes

Versions: 4

Compression:

Stored size: 741 Bytes

Contents

name: ci
on:
  workflow_dispatch:
    inputs:
      git-ref:
        description: Git Ref
        default: master
        required: true
jobs:
  test:
    runs-on: ubuntu-20.04
    env:
      RAILS_ENV: test
    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

4 entries across 4 versions & 1 rubygems

Version Path
bard-0.50.3 install_files/.github/workflows/ci.yml
bard-0.50.2 install_files/.github/workflows/ci.yml
bard-0.50.1 install_files/.github/workflows/ci.yml
bard-0.50.0 install_files/.github/workflows/ci.yml