Skip to content

Run on the same job #50

Run on the same job

Run on the same job #50

Workflow file for this run

name: Cucumber Tests
on: push
jobs:
cucumber:

Check failure on line 5 in .github/workflows/cucumber-tests.yml

View workflow run for this annotation

GitHub Actions / Cucumber Tests

Invalid workflow file

The workflow is not valid. .github/workflows/cucumber-tests.yml (Line: 5, Col: 3): The workflow must contain at least one job with no dependencies.
name: Run Cucmber Tests
runs-on: ubuntu-latest
needs: docker-setup
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Docker
run: |
docker compose -f docker-compose.yml up --detach
docker inspect --format='{{json .State.Health}}' archivesspace
docker ps -a
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2.0'
- name: Cache gems # You can cache your gems to make the workflow run faster
uses: actions/cache@v2
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
- name: Install gems
run: |
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Run tests
run: |
curl -I http://0.0.0.0:8080