Former-commit-id: 9eb9668bddc5640652974d423d880f4797409718
This commit is contained in:
Gerasimos (Makis) Maropoulos 2019-11-20 02:43:22 +02:00
parent eb3328dbe9
commit 5adb65b72d
2 changed files with 21 additions and 21 deletions

3
.github/FUNDING.yml vendored
View File

@ -2,4 +2,5 @@
# open_collective: # Replace with a single Open Collective username
# ko_fi: # Replace with a single Ko-fi username
# tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
custom: https://iris-go.com/donate # Replace with a single custom sponsorship URL
# custom: https://iris-go.com/donate # Replace with a single custom sponsorship URL
github: kataras

View File

@ -1,24 +1,23 @@
# name: Go
# on: [push]
# jobs:
name: Go
on: [push]
jobs:
# build:
# name: Build
# runs-on: ubuntu-latest
# steps:
build:
name: Build
runs-on: ubuntu-latest
steps:
# - name: Set up Go 1.13
# uses: actions/setup-go@v1
# with:
# go-version: 1.13
# id: go
- name: Set up Go 1.13
uses: actions/setup-go@v1
with:
go-version: 1.13
id: go
# - name: Check out code into the Go module directory
# uses: actions/checkout@master
- name: Check out code into the Go module directory
uses: actions/checkout@master
# - name: Get dependencies
# run: |
# go get -v -t -d ./...
# - name: Build
# run: go build -v .
# Billing required ^
# - name: Get dependencies
# run: |
# go get -v -t -d ./...
- name: Build
run: go build -v .