Hack integration tests CI to work #57
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: Style | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby 3.3.5 | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.3.5' | |
- name: Prepare | |
run: | | |
sudo apt-get update | |
sudo apt-get install git libfontconfig1-dev libsndfile1-dev libsdl2-dev libmpg123-dev libopenal1 libopenal-dev shellcheck | |
gem install bundler | |
gem install rubocop:1.66.1 | |
bundle install --jobs 4 --retry 3 | |
- name: Check ruby with rubocop | |
run: | | |
rubocop | |
- name: Shellcheck | |
run: find . -type f -name '*.sh' -print0 | xargs -0 shellcheck |