1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-24 05:17:03 +00:00
Former-commit-id: 8c0f09376521b56ed5a45e6e3ba590e7ce025deb
This commit is contained in:
Gerasimos (Makis) Maropoulos
2019-08-14 19:42:30 +03:00

23
.github/workflows/go.yml vendored Normal file
View File

@@ -0,0 +1,23 @@
name: Go
on: [push]
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
uses: actions/checkout@master
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
run: go build -v .