asdas #18
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: Test | |
on: | |
push: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: Test (Ruby ${{ matrix.ruby-version }}) | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby-version: | |
- 2.6 | |
- 2.7 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: awalsh128/cache-apt-pkgs-action@latest | |
with: | |
packages: libxslt-dev libxml2-dev zlib1g-dev | |
version: 1.0 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
bundler: 1.17 | |
- run: | | |
gem install nokogiri -v '1.6.1' --plarform=ruby | |
# - run: | | |
# bundle config set force_ruby_platform true | |
# - run: bundle install | |
# - run: bundle exec rake |