mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 10:41:03 +01:00
62b0a12f91
Former-commit-id: 08dc76cc49c7ea7d73188e2f8886a4139b6d776d
24 lines
406 B
YAML
24 lines
406 B
YAML
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 .
|