Skip to content

feat: update workflow #27

feat: update workflow

feat: update workflow #27

Workflow file for this run

name: Golang CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
go-ci:
runs-on: ubuntu-latest
env:
GO111MODULE: on
steps:
- name: "Install foundry"
shell: bash
run: |
curl -L https://foundry.paradigm.xyz | bash;
echo $SHELL;
tail $HOME/.bashrc;
source $HOME/.bashrc;
echo path is $PATH;
echo foundryup path is $(which foundryup);
foundryup
- name: Checkout Source
uses: actions/checkout@v3
- name: Run Gosec Security Scanner
uses: securego/gosec@master
with:
args: '-exclude-dir=contracts ./...'