27 lines
		
	
	
		
			612 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			612 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: Run Tests on PR
 | 
						|
 | 
						|
on:
 | 
						|
  pull_request:
 | 
						|
    branches:
 | 
						|
      - master
 | 
						|
jobs:
 | 
						|
  tests:
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
    env:
 | 
						|
      GO111MODULE: on
 | 
						|
    steps:
 | 
						|
      - uses: actions/checkout@v2
 | 
						|
      - uses: actions/setup-go@v2
 | 
						|
        with:
 | 
						|
          go-version: "^1.17.2"
 | 
						|
      - name: Unit test
 | 
						|
        run: |
 | 
						|
          go test -v ./...
 | 
						|
      - name: Build test
 | 
						|
        run: |
 | 
						|
          go build cmd/dashboard/main.go
 | 
						|
          go build cmd/agent/main.go
 | 
						|
      - name: Run Gosec Security Scanner
 | 
						|
        run: |
 | 
						|
          go install github.com/securego/gosec/v2/cmd/gosec@latest
 | 
						|
          gosec -exclude=G104 ./... |