Skip to content

update brotli submodule (#1791) #55

update brotli submodule (#1791)

update brotli submodule (#1791) #55

Workflow file for this run

name: Unit tests
on: [ workflow_dispatch, push, pull_request ]
env:
GO_VERSION: "1.22"
USE_BROTLI: 1
jobs:
unittest:
name: all_unittests
runs-on: ubuntu-20.04
steps:
- name: Install deps
run: sudo apt-get install liblzo2-dev
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
id: go
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Test
run: make all_unittests
env:
USE_BROTLI: 1
USE_LIBSODIUM: 1
USE_LZO: 1
TEST_MODIFIER: -race