From 8215de9a9989e533f14e608394451c95b3dbacbe 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:12:50 +0300 Subject: [PATCH] Experiments with workflow v3 --- .github/workflows/runtests.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/runtests.yml b/.github/workflows/runtests.yml index d82909b..8695909 100644 --- a/.github/workflows/runtests.yml +++ b/.github/workflows/runtests.yml @@ -22,6 +22,9 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: + - uses: actions/checkout@v3 + - uses: actions/setup-go@v3 + - name: Create dir for binaries run: mkdir builds @@ -39,8 +42,6 @@ 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