Sha256: a549e1834ecf3f61bce1b3de3010f402d1b1e0566d9be2ceed3277d3964f1247

Contents?: true

Size: 844 Bytes

Versions: 6

Compression:

Stored size: 844 Bytes

Contents

name: App tests

on:
  push:
    branches:
      - master
      - staging
  pull_request:

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
      - name: Checkout repository
        uses: actions/checkout@v2
      - name: Cancel previous Workflow Actions
        uses: styfle/cancel-workflow-action@0.6.0
        with:
          access_token: ${{ github.token }}
      - name: download docker-compose cache
        run: docker-compose pull
      - uses: satackey/action-docker-layer-caching@v0.0.11 # Cache or restore docker cache
        continue-on-error: true # Ignore the failure of a step and avoid terminating the job.
        with:
          key: app_docker

      - name: Run rspec test
        run: docker-compose run test /bin/sh -c "rspec"
      - name: Check codestyle
        run: docker-compose run test /bin/sh -c "rubocop"

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
buddy_translatable-1.1.2 .github/workflows/tests.yml
buddy_translatable-1.1.1 .github/workflows/tests.yml
buddy_translatable-1.1.0 .github/workflows/tests.yml
buddy_translatable-1.0.2 .github/workflows/tests.yml
buddy_translatable-1.0.1 .github/workflows/tests.yml
buddy_translatable-1.0 .github/workflows/tests.yml