Added artifacts
This commit is contained in:
parent
4e2fce81ff
commit
95fab7d71c
1 changed files with 8 additions and 4 deletions
12
.github/workflows/go.yml
vendored
12
.github/workflows/go.yml
vendored
|
|
@ -7,7 +7,6 @@ on:
|
||||||
branches: [ master ]
|
branches: [ master ]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
|
@ -20,6 +19,11 @@ jobs:
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: go build -v ./...
|
run: go build -v ./...
|
||||||
|
|
||||||
- name: Test
|
- name: Archive artifacts
|
||||||
run: go test -v ./...
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: scabiosa
|
||||||
|
path: |
|
||||||
|
scabiosa
|
||||||
|
|
||||||
|
|
|
||||||
Reference in a new issue