Skip to content

chore(deps): bump github.com/alecthomas/chroma/v2 from 2.8.0 to 2.13.0 #372

chore(deps): bump github.com/alecthomas/chroma/v2 from 2.8.0 to 2.13.0

chore(deps): bump github.com/alecthomas/chroma/v2 from 2.8.0 to 2.13.0 #372

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
go-version: [~1.17, ^1]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
env:
GO111MODULE: "on"
COLORTERM: "truecolor"
COLORFGBG: "7;0"
TERM: "xterm-256color"
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
- name: Download Go modules
run: go mod download
- name: Build
run: go build -v ./...
- name: Test
run: go test ./...
if: matrix.os != 'windows-latest'