Skip to content

Bump github.com/editorconfig/editorconfig-core-go/v2 from 2.6.2 to 2.6.3 #749

Bump github.com/editorconfig/editorconfig-core-go/v2 from 2.6.2 to 2.6.3

Bump github.com/editorconfig/editorconfig-core-go/v2 from 2.6.2 to 2.6.3 #749

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
strategy:
matrix:
go-version: [1.16.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...