Skip to content

Commit

Permalink
Updated unit test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-aravind committed Jan 17, 2025
1 parent 1cf0911 commit f5a224a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions workflows/run-unit-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: "Run unit tests"

on:
push:
branches: [ "main" ]

jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Install Ruby and gems
uses: ruby/setup-ruby@v1
with:
bundler-cache: true

- name: Run tests
run: bundle exec rails test

0 comments on commit f5a224a

Please sign in to comment.