Skip to content

Bump google.golang.org/grpc from 1.50.0 to 1.53.0 in /backend_services/tradepost #65

Bump google.golang.org/grpc from 1.50.0 to 1.53.0 in /backend_services/tradepost

Bump google.golang.org/grpc from 1.50.0 to 1.53.0 in /backend_services/tradepost #65

Workflow file for this run

name: Backend code tests
on:
pull_request:
paths:
- 'backend_services/**'
jobs:
lint:
name: Lint files
runs-on: 'ubuntu-latest'
strategy:
matrix:
service: [profile, matchmaking, item, tradepost]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '^1.19.2'
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
working-directory: ./backend_services/${{matrix.service}}
args: --timeout 120s --verbose
test:
name: Tests
runs-on: ubuntu-latest
needs: lint
strategy:
matrix:
service: [profile, matchmaking, item, tradepost]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '^1.19.2'
- name: Check go version
run: go version
- name: Run unit tests
run: |
make ${{matrix.service}}-test
- name: Run integration tests
run: |
make ${{matrix.service}}-test-integration