Skip to content

Bump golang.org/x/net from 0.23.0 to 0.55.0 #102

Bump golang.org/x/net from 0.23.0 to 0.55.0

Bump golang.org/x/net from 0.23.0 to 0.55.0 #102

Workflow file for this run

name: Build jobs
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.4.0
with:
submodules: true
- uses: actions/setup-go@v4.0.0
with:
go-version: '^1.20'
- name: Build
run: |
make build
checks:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.4.0
with:
submodules: true
- uses: actions/setup-go@v4.0.0
with:
go-version: '^1.20'
- run: make build
- name: ModTidy check
run: make check-modtidy
- name: Fmt check
run: make fmt-check
- name: Vet check
run: make vet
- name: Lint check
run: |
make install_lint
make lint
tests-components:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.4.0
with:
submodules: true
- uses: actions/setup-go@v4.0.0
with:
go-version: '^1.20'
- name: "Launch db engine in background"
run: |
make test-database-up
- name: "Give time for processes to start"
run: sleep 5
- name: Components tests
run: make test-components
tests-integration:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.4.0
with:
submodules: true
- uses: actions/setup-go@v4.0.0
with:
go-version: '^1.20'
- name: "Launch db engine in background"
run: |
make test-database-up
- name: "Give time for processes to start"
run: sleep 5
- name: Integration test
run: make test-integration