Skip to content

Migrate from CircleCI to GitHub Actions; add Cucumber features to CI #6

Migrate from CircleCI to GitHub Actions; add Cucumber features to CI

Migrate from CircleCI to GitHub Actions; add Cucumber features to CI #6

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
jobs:
spec:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ["2.3", "2.4", "2.5", "2.6", "2.7", "3.0", "3.1", "3.2", "head"]
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: rake spec
run: bundle exec rake spec
spec-legacy:
runs-on: ubuntu-20.04
strategy:
matrix:
ruby: ["2.0", "2.1", "2.2"]
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: rake spec
run: bundle exec rake spec
rubocop:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "ruby" # latest-stable
bundler-cache: true
- name: rake rubocop
run: bundle exec rake rubocop
danger:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "ruby" # latest-stable
bundler-cache: true
- name: danger
env:
DANGER_GITHUB_API_TOKEN: ${{ secrets.DANGER_GITHUB_API_TOKEN }}
run: bundle exec danger
features:

Check failure on line 59 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 59, Col: 1): Unexpected value 'features'
runs-on: macos-12
steps:
- uses: actions/checkout@v3
- name: Cache Vagrant boxes
uses: actions/cache@v3
with:
path: ~/.vagrant.d/boxes
key: ${{ runner.os }}-vagrant-${{ hashFiles('Vagrantfile') }}
restore-keys: |
${{ runner.os }}-vagrant-
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "ruby" # latest-stable
bundler-cache: true
- name: rake features
run: bundle exec rake features