-
Notifications
You must be signed in to change notification settings - Fork 2
65 lines (57 loc) · 2.06 KB
/
rspec.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
name: rspec tests
on: [pull_request]
jobs:
rspec:
name: Rspec
runs-on: ubuntu-latest
services:
postgres:
image: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports: ["5432:5432"]
env:
POSTGRES_DB: continuous_monitoring_test
POSTGRES_USER: cidbuser
POSTGRES_PASSWORD: postgres
steps:
- uses: actions/checkout@v4
- id: setup
uses: ./.github/actions/setup-project
with:
rails_env: test
- name: Run rspec
env:
DATABASE_URL: ${{ steps.setup.outputs.database_url }}
rspec_oscal_output: tmp
run: bundle exec rspec
- name: Plant assessment plan in evidence locker
if: ${{ github.actor != 'dependabot[bot]' }}
uses: ./.github/actions/auditree-cmd
env:
GITHUB_TOKEN: ${{ secrets.AUDITREE_GITHUB_TOKEN }}
with:
email: "[email protected]"
volume: tmp/oscal/assessment-plans/rspec/assessment-plan.json:/tmp/rspec.json:ro
cmd:
plant-helper -f /tmp/rspec.json -c assessment-plans -d "RSpec run assessment plan"
-t 31536000 -l https://github.com/gsa-tts/continuous-assessment-poc-evidence
- name: Plant assessment results in evidence locker
if: ${{ github.actor != 'dependabot[bot]' }}
uses: ./.github/actions/auditree-cmd
env:
GITHUB_TOKEN: ${{ secrets.AUDITREE_GITHUB_TOKEN }}
with:
email: "[email protected]"
volume: tmp/oscal/assessment-results/rspec/assessment-results.json:/tmp/rspec.json:ro
cmd:
plant-helper -f /tmp/rspec.json -c assessment-results -d "RSpec run assessment results"
-t 31536000 -l https://github.com/gsa-tts/continuous-assessment-poc-evidence
- name: Save assessment results
uses: actions/upload-artifact@v4
with:
name: continuous_monitoring_assessment
path: tmp/oscal