Skip to content

Rewrite Search

Rewrite Search #717

Workflow file for this run

name: Test Suite
on:
push:
branches: [ master ]
pull_request:
branches: [ master, staging ]
workflow_dispatch:
jobs:
setup:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: install bundle
run: |
bundle config set --local force_ruby_platform true
bundle config build.nokogiri --use-system-libraries
bundle config set --local path 'vendor/bundle';
bundle config set --local jobs 3
bundle config set --local retry 3
docker-compose run --rm --no-deps software bundle install --local
- name: Cache Ruby Bundle
uses: actions/cache@v3
with:
path: |
vendor/bundle
key: bundle-${{ hashFiles('Gemfile.lock') }}
rubocop:
needs: setup
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run linter
run: docker-compose run --rm --no-deps software bundle exec rubocop
haml-linter:
needs: setup
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run linter
run: docker-compose run --rm --no-deps software bundle exec haml-lint app/views/
unit:
needs: [linter, haml-linter]

Check failure on line 44 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / Test Suite

Invalid workflow file

The workflow is not valid. .github/workflows/tests.yml (Line: 44, Col: 13): Job 'unit' depends on unknown job 'linter'. .github/workflows/tests.yml (Line: 51, Col: 13): Job 'system' depends on unknown job 'linter'.
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run unit tests
run: docker-compose run --rm software bundle exec rake test
system:
needs: [linter, haml-linter]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run system tests
run: docker-compose run --rm software bundle exec rake test:system