GitHub Actions でのテストに対応する #674
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
paths-ignore: | |
- doc/** | |
- README.md | |
pull_request: {} | |
jobs: | |
test: | |
name: Test Log Archiver | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: | |
- '2.7' | |
- '3.0' | |
- '3.1' | |
- '3.2' | |
mroonga: | |
- latest | |
- mysql80-latest | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, '[skip ci]') && !contains(github.event.head_commit.message, '[ci skip]')" | |
env: | |
RAILS_ENV: test | |
TZ: Asia/Tokyo | |
services: | |
db: | |
image: groonga/mroonga:${{ matrix.mroonga }} | |
env: | |
MYSQL_ALLOW_EMPTY_PASSWORD: 1 | |
ports: | |
- 33060:3306 | |
redis: | |
image: redis:6 | |
ports: | |
- 6379:6379 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
# runs 'bundle install' and caches installed gems automatically | |
bundler-cache: true | |
# 参考: https://igarashikuniaki.net/diary/20200210.html | |
- name: Install JavaScript packages | |
run: | | |
yarn install | |
- name: Setup database | |
run: | | |
cp config/database.yml.github_actions config/database.yml | |
bin/rails db:setup | |
- name: Compile JS (webpack) | |
run: bin/yarn webpack | |
- name: Run tests | |
run: bin/rails test |