Skip to content

Even better with immutable struct #21

Even better with immutable struct

Even better with immutable struct #21

Workflow file for this run

name: roles
on:
workflow_dispatch:
push:
pull_request:
types:
- opened
- reopened
jobs:
test:
env:
WORKING_DIRECTORY: examples/roles
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- run: test -e Gemfile.lock
working-directory: ${{ env.WORKING_DIRECTORY }}
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.2
bundler-cache: true
working-directory: ${{ env.WORKING_DIRECTORY }}
- run: make test
working-directory: ${{ env.WORKING_DIRECTORY }}
mutate:
env:
WORKING_DIRECTORY: examples/roles
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- run: test -e Gemfile.lock
working-directory: ${{ env.WORKING_DIRECTORY }}
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.2
bundler-cache: true
working-directory: ${{ env.WORKING_DIRECTORY }}
- run: make mutate
working-directory: ${{ env.WORKING_DIRECTORY }}