Make SassTemplate ignore unsupported options when using sass-embedded #68
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: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
permissions: | |
contents: read | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: [ "2.0.0", 2.1, 2.3, 2.4, 2.5, 2.6, 2.7, "3.0", 3.1, 3.2, 3.3, jruby-9.1, jruby-9.2, jruby-9.3, jruby-9.4 ] | |
name: ${{ matrix.ruby }} | |
env: | |
BUNDLE_GEMFILE: .ci.gemfile | |
COFFEE_SCRIPT: use | |
steps: | |
- uses: actions/checkout@v4 | |
# WikiCloth needs IDN | |
# Pandoc needs Pandoc | |
- run: sudo apt-get install -y libidn11-dev pandoc | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
cache-version: 1 | |
- run: bundle exec rake |