Skip to content

Workflow file for this run

name: Ruby
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }}
strategy:
matrix:
ruby:
- '3.3'
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bin/setup
- name: build dockerfile.vips
uses: docker/build-push-action@v5

Check failure on line 28 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/main.yml

Invalid workflow file

You have an error in your yaml syntax on line 28
with:
context: .
file: ./Dockerfile.vips
tags: user/vips:latest
cache-from: type=gha
cache-to: type=gha,mode=max
- run: docker run --rm user/vips:latest bundle exec rake test X=/vips/
- name: build dockerfile.imagemagick
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile.imagemagick
tags: user/imagemagick:latest
cache-from: type=gha
cache-to: type=gha,mode=max
- run: docker run --rm user/imagemagick:latest bundle exec rake test X=/image_magick/