Skip to content

Commit

Permalink
Add smoke test GitHub workflow
Browse files Browse the repository at this point in the history
The smoke test was broken. Putting it in a workflow ensures we find out
early if it happens again.
  • Loading branch information
sambostock committed Feb 4, 2023
1 parent 990ee11 commit 9cc584c
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/smoke.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Smoke Test
on: [push, pull_request]
jobs:
smoke:
strategy:
fail-fast: false
matrix:
ruby: ['2.6', '2.7', '3.0', '3.1', '3.2', head]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec ruby smoke/smoke.rb

0 comments on commit 9cc584c

Please sign in to comment.