Skip to content

Fixes deprecations and adds workflows #4

Fixes deprecations and adds workflows

Fixes deprecations and adds workflows #4

Workflow file for this run

---
name: Unit
'on':
pull_request:
push:
branches:
- main
jobs:
yamllint:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@main
- name: Run yaml Lint
uses: actionshub/yamllint@main
test:
needs: yamllint
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['2.7', '3.0', '3.1']
name: Unit test on Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake test