Skip to content

Bump github.com/docker/docker from 24.0.7+incompatible to 25.0.6+incompatible in /backend_services/item #14

Bump github.com/docker/docker from 24.0.7+incompatible to 25.0.6+incompatible in /backend_services/item

Bump github.com/docker/docker from 24.0.7+incompatible to 25.0.6+incompatible in /backend_services/item #14

name: Backend Item Service code tests
on:
pull_request:
paths:
- 'backend_services/item/**'
jobs:
test:
name: Item Service Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '^1.19.2'
- name: Check go version
run: go version
- name: Lint files
uses: golangci/golangci-lint-action@v3
with:
working-directory: ./backend_services/item
args: --timeout 120s --verbose
- name: Run unit tests
run: |
make item-test
- name: Run integration tests
run: |
make item-test-integration