[io-console] move RP2040 specific code from app to gem #794
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: Static type check | |
on: [push, pull_request] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
env: | |
BUNDLE_GEMFILE: ./Gemfile | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.1.3 | |
bundler-cache: true # runs 'bundle install' and caches installed gems automatically | |
- name: setup picoruby | |
run: bundle install && rake | |
working-directory: lib/picoruby | |
#- name: Setup tmate session | |
# uses: mxschmitt/action-tmate@v3 | |
- name: mrubyc-test | |
run: MRUBYCFILE=test/Mrubycfile bundle exec mrubyc-test | |
working-directory: . | |