feat: get location automatically and make `is not writable the region… #91
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Testing on Ubuntu | |
on: | |
- push | |
- pull_request | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: | |
- 3.0 | |
- 3.1 | |
- 3.2 | |
- 3.3 | |
os: | |
- ubuntu-latest | |
name: Ruby ${{ matrix.ruby }} unit testing on ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- name: unit testing | |
env: | |
CI: true | |
run: | | |
ruby -v | |
bundle install --jobs 4 --retry 3 | |
bundle exec rake test |