diff --git a/.github/workflows/sqlite3-ruby.yml b/.github/workflows/sqlite3-ruby.yml index c2495f5a..91d9098c 100644 --- a/.github/workflows/sqlite3-ruby.yml +++ b/.github/workflows/sqlite3-ruby.yml @@ -76,6 +76,22 @@ jobs: - run: bundle exec rake compile -- --enable-system-libraries - run: bundle exec rake test + # reported at https://github.com/sparklemotion/sqlite3-ruby/issues/354 + # TODO remove once https://github.com/flavorjones/mini_portile/issues/118 is fixed + fedora: + runs-on: ubuntu-latest + container: + image: fedora:35 + steps: + - uses: actions/checkout@v3 + - uses: ruby/setup-ruby@v1 + with: + ruby-version: "3.1" + bundler-cache: true + - run: bundle install + - run: bundle exec rake compile -- --disable-system-libraries + - run: bundle exec rake test + sqlcipher: strategy: fail-fast: false