From 86b0ea4c04a48284a1209147a405d85f9b1dac62 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:10:27 +0300 Subject: [PATCH] Experiments with workflow --- .github/workflows/runtests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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