1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-17 09:57:01 +00:00

update faq, contributing and go workflow

Former-commit-id: d36101dfe296a2b294dd2e9fc49f4e5348bc4205
This commit is contained in:
Gerasimos (Makis) Maropoulos
2019-11-20 02:51:16 +02:00
parent 5adb65b72d
commit 256cda05fa
3 changed files with 16 additions and 66 deletions

View File

@@ -1,5 +1,7 @@
name: Go
on: [push]
env:
GOPROXY: "https://goproxy.io"
jobs:
build:
@@ -7,6 +9,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/cache@v1
id: cache
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Set up Go 1.13
uses: actions/setup-go@v1
with: