Skip to content

Commit

Permalink
Try again to get the workflow, er, working
Browse files Browse the repository at this point in the history
  • Loading branch information
RoUS committed Mar 4, 2024
1 parent 16084e2 commit ebffb8e
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
%YAML 1.2
---
name: Ruby

on:
Expand All @@ -18,10 +20,28 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up Ruby

- name: Set up Ruby w/o bundler
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler: none
bundler-cache: false

- name: Install the Versionary gem pre-bundler
run: |
gem install --no-user-install --install-dir vendor/bundle/ruby/3.0.0 versionomy
- name: Set up Ruby normally now
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true

- name: Run the default task
run: bundle exec rake

# Local Variables:
# mode: yaml
# eval: (if (intern-soft "fci-mode") (fci-mode 1))
# End:

0 comments on commit ebffb8e

Please sign in to comment.