Skip to content

Commit

Permalink
Run the tests on every push
Browse files Browse the repository at this point in the history
What have I got to lose? I've got a bunch of GitHub Action minutes that
go unused. Maybe this will generate valuable signal.
  • Loading branch information
danott committed Jan 16, 2024
1 parent f37e644 commit b969333
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Run Tests
on:
workflow_dispatch:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- run: bundle exec rake test

0 comments on commit b969333

Please sign in to comment.