diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1027cb8..30a33df 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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