Skip to content

Bump mypy from 1.4.1 to 1.9.0 in /python #15

Bump mypy from 1.4.1 to 1.9.0 in /python

Bump mypy from 1.4.1 to 1.9.0 in /python #15

Workflow file for this run

name: Go
on:
push:
branches:
- '**'
paths:
- 'go/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: Build
working-directory: go
run: go build -v ./...
- name: Test
working-directory: go
run: go test -v ./...