Skip to content

Updated CI

Updated CI #10

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
services:
trend:
image: ankane/trend-api
ports:
- 8000:8000
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3
bundler-cache: true
- run: bundle exec rake test
env:
TREND_URL: http://localhost:8000