Skip to content

build(deps): update dependency @types/react to ^18.3.0 (#1202) #2108

build(deps): update dependency @types/react to ^18.3.0 (#1202)

build(deps): update dependency @types/react to ^18.3.0 (#1202) #2108

Workflow file for this run

name: Go
on:
pull_request:
branches: [main]
push:
branches: [main]
tags: ['!*']
jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
go-version:
- '1.20'
- '1.21'
steps:
- uses: actions/checkout@v4
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@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@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Build
run: make