Skip to content

Merge pull request #14 from rstudio/dependabot/go_modules/production-… #33

Merge pull request #14 from rstudio/dependabot/go_modules/production-…

Merge pull request #14 from rstudio/dependabot/go_modules/production-… #33

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.20.3
- uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Test
run: go test ./...