diff --git a/.github/workflows/runtests.yml b/.github/workflows/runtests.yml index 1f656cd..d49681c 100644 --- a/.github/workflows/runtests.yml +++ b/.github/workflows/runtests.yml @@ -22,8 +22,6 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: - — uses: actions/checkout@v2 - - name: Create dir for binaries run: mkdir builds @@ -41,6 +39,8 @@ jobs: # your code must be built into builds/ssp binary - name: Build SSP binary + - uses: actions/checkout@v3 + - uses: actions/setup-go@v3 run: go build -o builds/ssp cmd/main.go - name: Making it executable