no prisitine #23
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 | |
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: bundle config build.nokogiri --use-system-libraries | |
- run: bundle install | |
# - run: bundle exec gem pristine nokogiri | |
- run: bundle exec rake |