diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/build.yml | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b81bc3e..4de3241 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,7 +16,17 @@ jobs: uses: actions/checkout@v4 - name: Install dependencies from Ubuntu sources - run: sudo apt-get install cc65 ruby + run: sudo apt-get install cc65 + + - name: Set up Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: 'ruby' + + - name: Lint scripts on bin/ + run: | + gem install rubocop + rubocop bin/ --format github - name: Main task run: V=1 make all |
