Skip to content

Bump pytest from 7.4.4 to 8.1.1 in /python #14

Bump pytest from 7.4.4 to 8.1.1 in /python

Bump pytest from 7.4.4 to 8.1.1 in /python #14

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 ./...