Skip to content

Add a second use case #5

Add a second use case

Add a second use case #5

Workflow file for this run

name: Build
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ["3.2"]
steps:
# https://github.com/actions/checkout
- uses: actions/checkout@v4
# https://github.com/ruby/setup-ruby
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run tests
run: rake build
# https://github.com/actions/upload-artifact
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: artifacts
path: "./bin"