Browse Source

Experiments with workflow v3

remotes/github/main
Дмитрий 3 years ago
parent
commit
8215de9a99
  1. 5
      .github/workflows/runtests.yml

5
.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 represent a sequence of tasks that will be executed as part of the job
steps: steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
- name: Create dir for binaries - name: Create dir for binaries
run: mkdir builds run: mkdir builds
@ -39,8 +42,6 @@ jobs:
# your code must be built into builds/ssp binary # your code must be built into builds/ssp binary
- name: Build SSP binary - name: Build SSP binary
uses: actions/checkout@v3
uses: actions/setup-go@v3
run: go build -o builds/ssp cmd/main.go run: go build -o builds/ssp cmd/main.go
- name: Making it executable - name: Making it executable

Loading…
Cancel
Save