Skip to content

Commit

Permalink
Run tests on CI
Browse files Browse the repository at this point in the history
There's a DB matrix so we can plug in running the tests against Postgres
and SQLite later on, but just running MySQL for now.
  • Loading branch information
djmb committed Oct 11, 2023
1 parent 46f2d7e commit be8ba6a
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Build
on: [push, pull_request]

jobs:
tests:
name: Tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby-version: [3.2.2]
database: [mysql]
services:
mysql:
image: mysql:8.0.31
env:
MYSQL_ALLOW_EMPTY_PASSWORD: "yes"
ports:
- 33060:3306
options: --health-cmd "mysql -h localhost -e \"select now()\"" --health-interval 1s --health-timeout 5s --health-retries 30
env:
TARGET_DB: ${{ matrix.database }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Ruby and install gems
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Setup test database
run: |
bin/rails db:setup
- name: Run tests
run: bin/rails test

0 comments on commit be8ba6a

Please sign in to comment.