Skip to content

Fix selectors :not(.a,.b) #151

Fix selectors :not(.a,.b)

Fix selectors :not(.a,.b) #151

Workflow file for this run

name: Run css_parser CI
on:
pull_request:
push:
branches:
- master
jobs:
test:
name: Test ruby version matrix
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['3.3', 'jruby-head']
steps:
- uses: actions/checkout@v4
- run: rm Gemfile.lock
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- run: bundle exec ruby -w -I"lib" "test/rule_set/declarations/test_value.rb" "test/rule_set/test_declarations.rb" "test/test_css_parser_basic.rb" "test/test_css_parser_loading.rb" "test/test_css_parser_media_types.rb" "test/test_css_parser_misc.rb" "test/test_css_parser_offset_capture.rb" "test/test_css_parser_regexps.rb" "test/test_helper.rb" "test/test_merging.rb" "test/test_rule_set.rb" "test/test_rule_set_creating_shorthand.rb" "test/test_rule_set_expanding_shorthand.rb"
rubocop:
name: Run rubocop
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0'
bundler-cache: true
- run: bundle exec rake rubocop