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 Jul 30, 2024
1 parent f7db01c commit 48c4ba1
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
test:
strategy:
matrix:
ruby-version: ['2.6', '2.7', '3.0', '3.1', '3.2', '3.3', 'truffleruby', 'jruby']
ruby-version: ['2.7', '3.0', '3.1', '3.2', '3.3', 'truffleruby', 'jruby']
platform: [ubuntu-latest, macos-latest, windows-latest]
exclude:
- ruby-version: truffleruby
Expand All @@ -32,3 +32,19 @@ jobs:
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 48c4ba1

Please sign in to comment.