diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml index 6c0a56d9..3eeb0b7f 100644 --- a/.github/workflows/github-actions.yml +++ b/.github/workflows/github-actions.yml @@ -85,4 +85,22 @@ jobs: - name: Run database consistency run: | bundle exec rails db:test:prepare - bundle exec database_consistency -c .database_consistency.todo.yml \ No newline at end of file + bundle exec database_consistency -c .database_consistency.todo.yml + + tests: + name: RSpec + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Set up Ruby + uses: ruby/setup-ruby@v1 + with: + bundler-cache: true + - name: Setup DB + run: | + bundle exec rails db:test:prepare + - name: Assets Precompile + run: bundle exec rails assets:precompile + - name: Run tests + run: | + bundle exec rspec \ No newline at end of file