Manually setup Go environment

This commit is contained in:
eikendev 2020-12-27 23:48:13 +01:00
parent fd4de4966d
commit 861c05757c
No known key found for this signature in database
GPG key ID: A1BDB1B28C8EF694

View file

@ -6,15 +6,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v1
with:
go-version: '*'
- name: Print Go environment
- name: Setup Go environment
run: |
export PATH="${GOPATH}/bin:${PATH}"
echo ${GOPATH}
echo ${GOROOT}
echo ${PATH}
go env
- name: Install dependencies
run: make setup
- name: Run tests