Skip to content

[SECURITY-1506] Implementing Snyk into Github Actions #2

[SECURITY-1506] Implementing Snyk into Github Actions

[SECURITY-1506] Implementing Snyk into Github Actions #2

Workflow file for this run

name: CI
on: [pull_request]
jobs:
lint:
name: Linters
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
with:
depth: 1
- run: make lint
tests:
name: Tests
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
with:
depth: 1
- uses: actions/setup-go@v1
with:
go-version: '1.13.1'
- run: make test