Skip to content

updated go version in a workflow #976

updated go version in a workflow

updated go version in a workflow #976

Workflow file for this run

name: Push
on: [push, pull_request]
jobs:
tests:
name: Test
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.20
uses: actions/setup-go@v4
with:
go-version: '1.20'
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Set up private repo access
run: git config --global url."https://${{ secrets.OOPCODE_ACCESS_TOKEN }}:x-oauth-basic@github.com".insteadOf "https://github.com"
- name: Test
run: make test