Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: add automated tests workflow #8

Merged
merged 18 commits into from
Oct 25, 2023
Merged
36 changes: 36 additions & 0 deletions .github/workflows/rubyonrails.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# This workflow uses actions that are not certified by GitHub. They are
# provided by a third-party and are governed by separate terms of service,
# privacy policy, and support documentation.
#
# This workflow will install a prebuilt Ruby version, install dependencies, and
# run tests and linters.
name: "Ruby on Rails CI"
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Install Ruby and gems
joaoGabriel55 marked this conversation as resolved.
Show resolved Hide resolved
uses: ruby/setup-ruby@v1.157.0
with:
ruby-version: '3.2.2'
bundler-cache: true

- name: Install dependencies
run: bundle install
working-directory: ./backend

- name: Set up database schema
run: bundle exec rails db:schema:load
working-directory: ./backend

- name: Run tests
run: bundle exec rspec
working-directory: ./backend