Skip to content

build(deps): update commitlint monorepo to v20 (major) #3053

build(deps): update commitlint monorepo to v20 (major)

build(deps): update commitlint monorepo to v20 (major) #3053

Workflow file for this run

name: Go
on:
pull_request:
branches: [main]
push:
branches: [main]
tags: ['!*']
jobs:
build:
runs-on: ubuntu-24.04
strategy:
matrix:
go-version:
- '1.21'
- '1.22'
- '1.23'
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5
with:
go-version: ${{ matrix.go-version }}
- name: Get dependencies
run: |
sudo apt-get update
sudo apt-get install -y libaom-dev libwebp-dev
go mod download
- name: Test
env:
MANAEL_ENABLE_AVIF: true
run: |
mkdir -p cover
go test -race -coverprofile=coverage.txt -covermode=atomic -v
- uses: codecov/codecov-action@ad3126e916f78f00edff4ed0317cf185271ccc2d # v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Build
run: make