1
0
mirror of https://github.com/kataras/iris.git synced 2026-01-11 05:55:57 +00:00
Files
kararas_iris/.github/workflows/go.yml
Gerasimos (Makis) Maropoulos 30bebb7661 Update go.yml
Former-commit-id: ce33f805075465f3ad736ea73229fc4214cfe515
2019-08-14 11:15:21 +03:00

30 lines
561 B
YAML

name: Go
on:
push:
branches:
- master
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.12
uses: actions/setup-go@v1
with:
version: 1.12
id: go
- name: Check out code into the Go module directory
use: actions/checkout@master
path: ${{ go.module-path }}
- name: Get dependencies
working-directory: ${{ go.module-path }}
run: |
go get -v -t -d ./...
- name: Build
working-directory: ${{ go.module-path }}
run: go build -v .