Skip to content

Reinstate and populate Vehicle.image as a @deprecated field #385

Reinstate and populate Vehicle.image as a @deprecated field

Reinstate and populate Vehicle.image as a @deprecated field #385

Workflow file for this run

name: gotest
on:
pull_request:
branches: ["**"]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.22
- name: Checkout code
uses: actions/checkout@v4
- name: Get dependencies
run: |
go get -v -t ./...
go install gotest.tools/gotestsum@latest
- name: modVerify
run: go mod verify
- name: Run Tests with go testsum
run: gotestsum --format pkgname --jsonfile test.json
- name: Annotate tests
if: always()
uses: guyarb/golang-test-annotations@v0.8.0
with:
test-results: test.json