Skip to content

Bump patch version. #43

Bump patch version.

Bump patch version. #43

Workflow file for this run

name: Development
on: [push, pull_request]
jobs:
test:
name: ${{matrix.ruby}} on ${{matrix.os}}
runs-on: ${{matrix.os}}-latest
continue-on-error: ${{matrix.experimental}}
strategy:
matrix:
os:
- ubuntu
ruby:
- "2.7"
- "3.0"
- "3.1"
experimental: [false]
env: [""]
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{matrix.ruby}}
bundler-cache: true
- uses: kurocha/setup-cpp@master
- name: Git credentials
run: |
git config --global user.email "samuel@oriontransfer.net"
git config --global user.name "Samuel Williams"
- name: Run tests
timeout-minutes: 5
run: ${{matrix.env}} bundle exec rspec