Skip to content

Commit

Permalink
Fixing rails action
Browse files Browse the repository at this point in the history
Old Rails action is deprecated moving it to the action that works.
  • Loading branch information
anantshri authored May 8, 2023
1 parent 33d1cbe commit 499e6d9
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/rails.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
name: Rails Build and Test

on:
workflow_dispatch:
pull_request:
branches: [ master ]


jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby 2.6
uses: actions/setup-ruby@v1
- name: Set up Ruby 3.0
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6.x
ruby-version: '2.6.10' # Not needed with a .ruby-version file
- name: Install system dependencies
run: |
sudo apt-get update
Expand Down

0 comments on commit 499e6d9

Please sign in to comment.