.github/workflows/check.yml in image_optim-0.31.3 vs .github/workflows/check.yml in image_optim-0.31.4

- old
+ new

@@ -8,53 +8,73 @@ check: runs-on: ubuntu-latest strategy: matrix: ruby: - - '2.0' - - '2.1' - - '2.2' - - '2.3' - - '2.4' - - '2.5' - - '2.6' + - '1.9.3' - '2.7' - '3.0' - '3.1' - '3.2' - - jruby-9.3 + - '3.3' - jruby-9.4 fail-fast: false steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 with: ruby-version: "${{ matrix.ruby }}" bundler-cache: true - - run: sudo npm install -g svgo - - run: curl -L "https://github.com/shssoichiro/oxipng/releases/download/v4.0.3/oxipng-4.0.3-x86_64-unknown-linux-musl.tar.gz" | tar -xz -C /usr/local/bin --strip-components 1 --wildcards '*oxipng' + - run: npm install -g svgo - run: bundle exec image_optim --info - run: bundle exec rspec + containers: + runs-on: ubuntu-latest + container: ${{ matrix.container }} + strategy: + matrix: + container: + - debian:buster + - debian:bullseye + - debian:bookworm + # - alpine + fail-fast: false + steps: + - uses: actions/checkout@v4 + - run: | + if command -v apt-get &> /dev/null; then + apt-get update + apt-get -y install make gcc git curl imagemagick ruby ruby-dev rubygems + fi + - run: | + curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash + . ~/.nvm/nvm.sh + nvm install 20 + echo "PATH=$PATH" >> $GITHUB_ENV + - run: npm install -g svgo + - run: gem install bundler || gem install bundler --version '< 2.4' + - run: bundle install + - run: bundle exec bin/image_optim --info + - run: bundle exec rspec windows: runs-on: windows-latest strategy: matrix: ruby: - - '2.6' - '2.7' - '3.0' - '3.1' - '3.2' + - '3.3' fail-fast: false - continue-on-error: ${{ matrix.ruby == '3.2' }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 with: ruby-version: "${{ matrix.ruby }}" bundler-cache: true - - uses: actions/cache@v2 + - uses: actions/cache@v4 with: path: "$HOME/bin" key: ${{ runner.os }} - run: | mkdir "$HOME/bin" @@ -65,20 +85,28 @@ choco install --no-progress imagemagick ls C:\'Program Files'\ImageMagick* | % FullName | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append - run: npm install -g svgo - run: bundle exec image_optim --info - run: bundle exec rspec + update_worker_options_in_readme: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: ruby/setup-ruby@v1 + with: + ruby-version: '3' + bundler-cache: true + - run: script/update_worker_options_in_readme -n coverage: runs-on: ubuntu-latest env: CC_TEST_REPORTER_ID: b433c6540d220a2da0663670c9b260806bafdb3a43c6f22b2e81bfb1f87b12fe steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 with: ruby-version: '3' bundler-cache: true - - run: sudo npm install -g svgo - - run: curl -L "https://github.com/shssoichiro/oxipng/releases/download/v4.0.3/oxipng-4.0.3-x86_64-unknown-linux-musl.tar.gz" | tar -xz -C /usr/local/bin --strip-components 1 --wildcards '*oxipng' - - uses: paambaati/codeclimate-action@v2.7.5 + - run: npm install -g svgo + - uses: paambaati/codeclimate-action@v9 with: coverageCommand: bundle exec rspec