Skip to content

CLOUDP-238437 - Bump black from 22.3.0 to 24.3.0 #2317

CLOUDP-238437 - Bump black from 22.3.0 to 24.3.0

CLOUDP-238437 - Bump black from 22.3.0 to 24.3.0 #2317

Workflow file for this run

name: Go
on:
pull_request:
branches: [master]
jobs:
UnitTests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Test api
run: go test -v ./api/...
- name: Test cmd
run: go test -v ./cmd/...
- name: Test controllers
run: go test -v ./controllers/...
- name: Test pkg
run: go test -v ./pkg/...
- name: Test mongotester
run: go test -v ./test/e2e/util/mongotester/...
- name: Check licenses
run: make check-licenses