Skip to content

Commit

Permalink
Try running cucumber features
Browse files Browse the repository at this point in the history
  • Loading branch information
mattbrictson committed May 26, 2023
1 parent 1900bfb commit 4bd54e3
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.2"
ruby-version: "ruby" # latest-stable
bundler-cache: true
- name: rake rubocop
run: bundle exec rake rubocop
Expand All @@ -50,9 +50,27 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.2"
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:
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

0 comments on commit 4bd54e3

Please sign in to comment.