forked from flaviostutz/schellar
-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (49 loc) · 1.41 KB
/
security-test.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
name: PR check
on: pull_request
env:
IMAGE_NAME: frinx/uniflow-schellar
jobs:
graphql-generator-check:
runs-on: ubuntu-latest
defaults:
run:
working-directory: schellar
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.21
- name: Build
run: |
go get github.com/99designs/gqlgen
go run github.com/99designs/gqlgen generate
- name: Verify Changed files
uses: tj-actions/verify-changed-files@v17
id: verify-changed-files
with:
files: |
schellar/graph/*
- name: Run step only when any of the above files change
if: steps.verify-changed-files.outputs.files_changed == 'true'
run: |
echo """Changed files: ${{ steps.verify-changed-files.outputs.changed_files }}
echo """Please execute:
go get github.com/99designs/gqlgen
go run github.com/99designs/gqlgen generate
git diff
"""
exit 1
security-test:
needs: graphql-generator-check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Build image
run: docker build . --file Dockerfile --tag $IMAGE_NAME
- uses: Azure/container-scan@v0
with:
image-name: ${{ env.IMAGE_NAME }}:latest
# severity-threshold: CRITICAL