forked from nervosnetwork/ckb-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (41 loc) · 1.13 KB
/
Copy pathruby.yml
File metadata and controls
42 lines (41 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Unit test
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:14
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
redis:
image: redis
ports: ["6379:6379"]
options: --entrypoint redis-server
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.1.2"
rubygems: "3.3.22"
bundler-cache: true
- name: Build and test with Rake
run: |
sudo gem install bundler:2.2.32
bundle install --jobs 4 --retry 3
bundle exec rails db:setup RAILS_ENV=test
cp .env.test.local.travis .env.test.local
bundle exec rails test RAILS_ENV=test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
file: coverage/coverage.xml
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}