Skip to content

fix(deps): update golang.org/x/exp digest to e7e105d #995

fix(deps): update golang.org/x/exp digest to e7e105d

fix(deps): update golang.org/x/exp digest to e7e105d #995

Workflow file for this run

name: tests
on:
push:
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
name: CI tests
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Import environment variables from file
run: cat ".github/env" >> $GITHUB_ENV
- name: Run license check
run: make check-license
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '${{ env.golang-version }}'
- name: Run code format check
run: make format
- name: Run unit tests
run: make test
- name: Run e2e tests
run: make test-e2e