Skip to content

Commit

Permalink
Merge branch 'master' of github.com:SpectralOps/netz
Browse files Browse the repository at this point in the history
  • Loading branch information
cmpxchg16 committed Mar 4, 2021
2 parents d688154 + d22232c commit 8eb7b70
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CI

on:
push:
branches:
- master
pull_request:

jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
go: ['1.14', '1.15']
env:
VERBOSE: 1
GOFLAGS: -mod=readonly
GOPROXY: https://proxy.golang.org

steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}

- name: Checkout code
uses: actions/checkout@v2

0 comments on commit 8eb7b70

Please sign in to comment.