Skip to content

Commit

Permalink
test: add valgrind job to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
flavorjones committed Apr 27, 2023
1 parent 67fc6e6 commit b6bc75c
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/sqlite3-ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,3 +119,16 @@ jobs:
vcpkg: sqlcipher
- run: bundle exec rake compile -- --with-sqlcipher
- run: bundle exec rake test

valgrind:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby-pkgs@v1
with:
ruby-version: "3.2"
bundler-cache: true
apt-get: libsqlite3-dev valgrind
- run: bundle install
- run: bundle exec rake compile
- run: bundle exec rake test:valgrind

0 comments on commit b6bc75c

Please sign in to comment.