Skip to content

⬆️ Bump github.com/alecthomas/chroma/v2 from 2.13.0 to 2.14.0 #70

⬆️ Bump github.com/alecthomas/chroma/v2 from 2.13.0 to 2.14.0

⬆️ Bump github.com/alecthomas/chroma/v2 from 2.13.0 to 2.14.0 #70

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: Test
runs-on: ${{ matrix.OS }}
strategy:
matrix:
OS: [ubuntu-latest, windows-latest]
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.17
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Test
run: go test ./... -v