We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee13bb1 commit 100e855Copy full SHA for 100e855
.github/workflows/ci.yml
@@ -4,7 +4,7 @@ jobs:
4
test:
5
strategy:
6
matrix:
7
- go-version: [1.13.x, 1.14.x]
+ go-version: [1.13.x, 1.14.x, 1.15.x]
8
platform: [ubuntu-latest]
9
runs-on: ${{ matrix.platform }}
10
steps:
@@ -16,8 +16,8 @@ jobs:
16
with:
17
path: './src/github.com/github-release/github-release'
18
# staticcheck needs this for GOPATH
19
- - run: echo "::set-env name=GOPATH::$GITHUB_WORKSPACE"
20
- - run: echo "::set-env name=PATH::$GITHUB_WORKSPACE/bin:$PATH"
+ - run: echo "GOPATH=$GITHUB_WORKSPACE" >> $GITHUB_ENV
+ - run: echo "PATH=$GITHUB_WORKSPACE/bin:$PATH" >> $GITHUB_ENV
21
- name: Run tests
22
run: make lint test
23
working-directory: './src/github.com/github-release/github-release'
0 commit comments