Skip to content

Commit

Permalink
Merge pull request #69 from djberg96/freebsd_github_action
Browse files Browse the repository at this point in the history
Add FreeBSD to workflow.
  • Loading branch information
djberg96 authored Jul 30, 2024
2 parents f7db01c + 48c4ba1 commit 18bdbf8
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 18bdbf8

Please sign in to comment.