Skip to content

Commit

Permalink
fixup! Transition CI to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilyeo committed Jun 20, 2024
1 parent 546c4cc commit 49333b2
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Ruby on Rails CI"
name: CI

on:
push:
Expand All @@ -8,13 +8,15 @@ on:

jobs:
test:
name: Specs

runs-on: ubuntu-latest

services:
postgres:
image: postgres:latest
ports:
- "5432:5432"
- 5432:5432
env:
POSTGRES_USER: til_test
POSTGRES_PASSWORD: pwd
Expand All @@ -26,7 +28,7 @@ jobs:
env:
RAILS_ENV: test
DATABASE_URL: "postgres://til_test:pwd@localhost:5432/til_test"
DATABASE_URL: postgres://til_test:pwd@localhost:5432/til_test

steps:
- name: Checkout code
Expand Down

0 comments on commit 49333b2

Please sign in to comment.