From 9252af0f3992bd14ac29e0072cf5784f370b13f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=BC=D0=B8=D1=82=D1=80=D0=B8=D0=B9?= Date: Mon, 17 Oct 2022 16:05:05 +0300 Subject: [PATCH] Experimenting with flags --- .github/workflows/runtests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/runtests.yml b/.github/workflows/runtests.yml index 83effec..1f656cd 100644 --- a/.github/workflows/runtests.yml +++ b/.github/workflows/runtests.yml @@ -22,6 +22,8 @@ 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 @@ -39,7 +41,7 @@ jobs: # your code must be built into builds/ssp binary - name: Build SSP binary - run: go build -o builds/ssp ./cmd/main.go + run: go build -o builds/ssp cmd/main.go - name: Making it executable run: chmod +x builds/ssp