Skip to content

Commit

Permalink
get working with github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
one-m1nd committed Mar 2, 2024
1 parent 91f19c5 commit 77ad620
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Rails Tests

on:
push:
branches:
- master

pull_request:

jobs:
build:
runs-on: ubuntu-latest
name: Rails tests
strategy:
matrix:
ruby:
- '3.2.2'

steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run the default task
run: bin/rails test

0 comments on commit 77ad620

Please sign in to comment.