Merge pull request #109 from ssvlabs/chore/replace-bloxapp-to-ssvlabs #51
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Security check | |
on: | |
push: | |
branches: | |
- "master" | |
pull_request: | |
branches: | |
- "**" | |
workflow_dispatch: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup make | |
run: sudo apt-get update && sudo apt-get install make | |
- name: Setup Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.19 | |
- name: Run gosec check | |
run: make gosec |