-
Notifications
You must be signed in to change notification settings - Fork 1
44 lines (44 loc) · 1.32 KB
/
ci.yml
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
43
44
name: ci
on:
push:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup FluentCI
uses: fluentci-io/setup-fluentci@v5
with:
wasm: true
plugin: postgres
args: |
start
env:
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
POSTGRES_USER: postgres
POSTGRES_DB: demo-rails5_test
- name: check style + security
run: |
fluentci run --wasm ruby bundle_exec rubocop
fluentci run --wasm ruby bundle_exec brakeman
env:
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RUBY_VERSION: 2.7.3
- name: RSpec - model tests
run: |
fluentci run --wasm ruby bundle_exec rspec spec/models
env:
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: RSpec - controller tests
run: |
fluentci run --wasm ruby bundle_exec rspec spec/controllers
env:
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: RSpec - feature specs
run: |
fluentci run --wasm ruby bundle_exec rake db:setup
fluentci run --wasm ruby bundle_exec rspec spec/features
env:
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}