-
Notifications
You must be signed in to change notification settings - Fork 15
85 lines (78 loc) · 2.23 KB
/
commit.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
---
name: 1 - Commit
on:
push:
jobs:
lint-actions:
name: Lint Yaml
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: Lint GitHub Actions
run: yamllint -c .yamllint.yml .github/workflows/
test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: build
run: make build
- name: test
run: make test
- name: cypress-artifacs
uses: actions/upload-artifact@v3
if: failure()
with:
name: cypress-artifacts
path: |
./e2e/cypress/screenshots/
./e2e/cypress/videos/
test_proxy:
name: Validate Proxy Configuration Files
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: test
run: make validate-proxy
test_importer:
name: test importer
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup python
uses: actions/setup-python@v5
with:
python-version: '3.10'
architecture: x64
- name: test_importer
run: make test-import-tool
test_vulnerability:
name: test vulnerability
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: test_vulnerability
run: make vulnerability-check
create-cloudgov-services-development:
if: github.ref == 'refs/heads/develop'
name: create services (development)
uses: gsa/data.gov/.github/workflows/create-services-template.yml@main
with:
environ: development
secrets: inherit
deploy-development:
if: github.ref == 'refs/heads/develop'
name: deploy (development)
needs:
- create-cloudgov-services-development
uses: gsa/data.gov/.github/workflows/deploy-template.yml@main
with:
environ: development
app_url: https://catalog-dev-datagov.app.cloud.gov
app_names: "{\"include\":[{\"app\":\"catalog-web\",\"smoketest\":true},{\"app\":\"catalog-admin\"},{\"app\":\"catalog-fetch\"},{\"app\":\"catalog-gather\"},{\"app\":\"catalog-proxy\",\"robots-dev\":true}]}"
secrets: inherit