Skip to content

Commit

Permalink
Add FreeBSD to workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
djberg96 committed Aug 2, 2024
1 parent cc6b9cc commit 4f29777
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,31 @@ jobs:
test:
strategy:
matrix:
ruby-version: ['2.6', '2.7', '3.0', '3.1', '3.2', '3.3']
ruby-version: ['2.7', '3.0', '3.1', '3.2', '3.3']
platform: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run tests
run: bundle exec rake
freebsd:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Test in FreeBSD
id: test
uses: vmactions/freebsd-vm@v1
with:
usesh: true
prepare: |
pkg install -y ruby devel/ruby-gems
run: |
gem install bundler --no-document
bundle install --quiet
bundle exec rspec

0 comments on commit 4f29777

Please sign in to comment.