mirror of
https://github.com/kataras/iris.git
synced 2025-02-09 02:34:55 +01:00
Iris part of github actions beta program: workflow
Former-commit-id: 2a0af2f541b37b7b87b0b686fa27a8ab04e4682e
This commit is contained in:
parent
b98bb5a870
commit
ee0c06d854
32
.github/workflows/go.yml
vendored
Normal file
32
.github/workflows/go.yml
vendored
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
name: Go
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
build:
|
||||||
|
name: Build
|
||||||
|
runs-on:
|
||||||
|
- ubuntu-latest
|
||||||
|
- macOS-latest
|
||||||
|
- windows-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 .
|
Loading…
Reference in New Issue
Block a user