Skip to content

Commit

Permalink
adjust go-version formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
bobheadxi committed Oct 17, 2019
1 parent 68a485e commit fa6b68d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
name: Pipeline

on: [ push, pull_request ]
on: [ push ]

env:
CI: true
GOVERSION: '1.13'
GOVERSION: &goversion '1.13'

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-go@v1
with: { go-version: $GOVERSION }
with: { go-version: *goversion }
- name: Install web dependencies
run: make web-deps
- name: Run linters
Expand All @@ -23,7 +23,7 @@ jobs:
steps:
- uses: actions/checkout@v1
- uses: actions/setup-go@v1
with: { go-version: $GOVERSION }
with: { go-version: *goversion }
- name: Build daemon
run: make daemon TAG=test
- name: Cache daemon image
Expand All @@ -38,7 +38,7 @@ jobs:
steps:
- uses: actions/checkout@v1
- uses: actions/setup-go@v1
with: { go-version: $GOVERSION }
with: { go-version: *goversion }
- name: Install Docker dependencies
run: bash test/docker_deps.sh
- name: Start test container
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
steps:
- uses: actions/checkout@v1
- uses: actions/setup-go@v1
with: { go-version: $GOVERSION }
with: { go-version: *goversion }
- name: Start mock VPS (${{ matrix.case }})
run: |
make testenv \
Expand Down

0 comments on commit fa6b68d

Please sign in to comment.