Skip to content

Merge pull request #16 from artur-intech/master #59

Merge pull request #16 from artur-intech/master

Merge pull request #16 from artur-intech/master #59

Workflow file for this run

name: ubuntu
on: [push, pull_request]
jobs:
ruby-versions:
uses: ruby/actions/.github/workflows/ruby_versions.yml@master
with:
engine: cruby
min_version: 2.6
build:
needs: ruby-versions
name: build (${{ matrix.ruby }} / ${{ matrix.os }})
strategy:
matrix:
ruby: ${{ fromJson(needs.ruby-versions.outputs.versions) }}
os: [ ubuntu-latest, macos-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run test
run: bundle exec rake test
- id: build
run: |
rake build
echo "pkg=${GITHUB_REPOSITORY#*/}-${RUNNING_OS%-*}" >> $GITHUB_OUTPUT
env:
RUNNING_OS: ${{matrix.os}}
if: needs.ruby-versions.outputs.latest == matrix.ruby
- name: Upload package
uses: actions/upload-artifact@v4
with:
path: pkg/*
name: ${{steps.build.outputs.pkg}}
if: steps.build.outputs.pkg