Skip to content

Bump golang.org/x/crypto from 0.14.0 to 0.31.0 in /backend_services/profile #12

Bump golang.org/x/crypto from 0.14.0 to 0.31.0 in /backend_services/profile

Bump golang.org/x/crypto from 0.14.0 to 0.31.0 in /backend_services/profile #12

name: Backend Profile Service code tests
on:
pull_request:
paths:
- 'backend_services/profile/**'
jobs:
test:
name: Profile 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/profile
args: --timeout 120s --verbose
- name: Run unit tests
run: |
make profile-test
- name: Run integration tests
run: |
make profile-test-integration