Skip to content

Bump future from 0.18.3 to 1.0.0 in /python #194

Bump future from 0.18.3 to 1.0.0 in /python

Bump future from 0.18.3 to 1.0.0 in /python #194

Workflow file for this run

name: Go build
# Run either when pushing directly to main/master or in a PR targeting main/master
on:
push:
branches:
- master
- main
paths:
- "**.go"
- "go/go.mod"
- "go/go.sum"
- ".github/workflows/go.yml"
pull_request:
branches:
- master
- main
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./go
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.21.x"
cache-dependency-path: go/go.sum
- name: Install dependencies
run: go get .
- name: Build
run: go build -v ./...
- name: Test with the Go CLI
run: go test