Skip to content

Commit

Permalink
ci: periodically run tests against upstream sqlite
Browse files Browse the repository at this point in the history
  • Loading branch information
flavorjones committed Nov 10, 2022
1 parent a8f4010 commit 1c60661
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/upstream.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: upstream
concurrency:
group: "${{github.workflow}}-${{github.ref}}"
cancel-in-progress: true
on:
workflow_dispatch:
schedule:
- cron: "0 8 * * 1,3,5" # At 08:00 on Monday, Wednesday, and Friday # https://crontab.guru/#0_8_*_*_1,3,5

jobs:
sqlite-head:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: |
git clone --depth=1 https://github.com/sqlite/sqlite
git -C sqlite log -n1
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.1"
bundler-cache: true
- run: bundle exec rake compile -- --with-sqlite-source-dir=${GITHUB_WORKSPACE}/sqlite
- run: bundle exec rake test

0 comments on commit 1c60661

Please sign in to comment.